Skip to content
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

Pin mypy for regression in v1.12. #484

Merged
merged 1 commit into from
Dec 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ zip_safe = false
tests =
pytest
pytest-asyncio
mypy>=0.800
# Pending release of https://github.com/python/mypy/pull/17355
# Likely in v1.13.1+, when pip can be removed.
mypy~=1.11.0
Comment on lines +42 to +44
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Checks pass against mypy's master branch with:

Suggested change
# Pending release of https://github.com/python/mypy/pull/17355
# Likely in v1.13.1+, when pip can be removed.
mypy~=1.11.0
mypy @ git+https://github.com/python/mypy.git@master


[tool:pytest]
testpaths = tests
Expand Down
Loading