-
Notifications
You must be signed in to change notification settings - Fork 11
chore(deps): update mypy to 1.19.1 and fix type ignore comments #906
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update mypy to 1.19.1 and fix type ignore comments #906
Conversation
Updated mypy from 1.18.2 to 1.19.1. Changed `type: ignore[misc]` to `type: ignore[untyped-decorator]` to match the actual error code. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> Change-Id: I4db5a2604fc5a034a23acd8318193d272549151e
Merge ProtectionsYour pull request matches the following merge protections and will not be merged until they are valid. 🟢 🤖 Continuous IntegrationWonderful, this rule succeeded.
🟢 👀 Review RequirementsWonderful, this rule succeeded.
🟢 Enforce conventional commitWonderful, this rule succeeded.Make sure that we follow https://www.conventionalcommits.org/en/v1.0.0/
🟢 🔎 ReviewsWonderful, this rule succeeded.
🟢 📕 PR descriptionWonderful, this rule succeeded.
|
🧪 CI InsightsHere's what we observed from your CI run for e15c71a. 🟢 All jobs passed!But CI Insights is watching 👀 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR updates the mypy type checker from version 1.18.2 to 1.19.1 and corrects type ignore comments to use the more specific untyped-decorator error code instead of the generic misc code. The update also introduces a new dependency (librt) which is required by mypy 1.19.1.
Changes:
- Updated mypy from 1.18.2 to 1.19.1 in both pyproject.toml and uv.lock
- Changed
type: ignore[misc]totype: ignore[untyped-decorator]in decorator functions - Added librt 0.7.7 as a new transitive dependency of mypy
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| uv.lock | Updated mypy package metadata to version 1.19.1 and added librt dependency |
| pyproject.toml | Updated mypy version specifier from 1.18.2 to 1.19.1 |
| mergify_cli/stack/cli.py | Changed type ignore comments to use specific untyped-decorator error code |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Merge Queue Status✅ The pull request has been merged at e15c71a This pull request spent 1 minute 40 seconds in the queue, including 1 minute 24 seconds running CI. Required conditions to merge
|
Updated mypy from 1.18.2 to 1.19.1. Changed
type: ignore[misc]totype: ignore[untyped-decorator]to match the actual error code.Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com