-
-
Notifications
You must be signed in to change notification settings - Fork 374
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
Fix mypy tests on 3.10 #771
Conversation
Why didn't that work? I'm gonna have to install Python 3.10 I guess. Sigh. |
Oh it looks like python/typeshed#5044 hasn't been included with mypy yet. We might have to wait for another mypy release. |
Great news! 3.10 is passing! Bad news! Everything else is broken! 😂 We've already noticed it in #824 that test_mypy seems to be broken now in CI. Did they merge something you needed? |
Looks like single quote went to double quote:
Let me see what caused it and fix it. |
Here's what prompted the change: python/mypy#7445 Ok I'll just change our tests to use double quotes. |
Should we pin a mypy version in tox.ini? |
Unless it’s necessary, rather not? We want to learn about breakage ASAP. Or do you mean it as a temporary fix? On a phone rn so can’t fully investigate the MyPy issues. |
Fix is here: #825 |
I think one of the merges killed my diff. Hang on. |
Looks like this was a bug fixed upstream
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.
Cool!
since you didn’t change any code, I assume codecov is just being difficult.
Looks like this was a bug fixed upstream
Fixes #767
Pull Request Check List
This is just a friendly reminder about the most common mistakes. Please make sure that you tick all boxes. But please read our contribution guide at least once, it will save you unnecessary review cycles!
If an item doesn't apply to your pull request, check it anyway to make it apparent that there's nothing left to do. If your pull request is a documentation fix or a trivial typo, feel free to delete the whole thing.
.pyi
).tests/typing_example.py
.docs/api.rst
by hand.@attr.s()
have to be added by hand too.versionadded
,versionchanged
, ordeprecated
directives. Find the appropriate next version in our__init__.py
file..rst
files is written using semantic newlines.changelog.d
.If you have any questions to any of the points above, just submit and ask! This checklist is here to help you, not to deter you from contributing!