-
Notifications
You must be signed in to change notification settings - Fork 1
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
Correct BValue
typing
#1
Conversation
1fe7468
to
44d0fe2
Compare
51d4c23
to
75a7d55
Compare
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.
By the way, if this patch requires a bleeding-edge version of Mypy, does it mean consumers who use both this package and Mypy also need to install the same (or higher) version of Mypy?
Yes. Because it requires bleeding-edge version of Mypy, it may be better to turn this pull request as draft until a new Mypy release introduced. |
The last release of Mypy (0.971 in 2022-07-19) took about two months after its previous release (0.960 in 2022-05-16). Hmm… IMHO it's likely to be soon, and we could wait for the next release! |
@moreal Mypy 0.981 which introduced general recursive types was released today. Let's upgrade Mypy to 0.981! |
f54ee8e
to
ea25051
Compare
ea25051
to
92beac8
Compare
This PR has Quantification details
Why proper sizing of changes matters
Optimal pull request sizes drive a better predictable PR flow as they strike a
What can I do to optimize my changes
How to interpret the change counts in git diff output
Was this comment helpful? 👍 :ok_hand: :thumbsdown: (Email) |
In Mypy development build (master branch), it became to support recursive types. (See python/mypy#731 (comment), python/mypy#13297).
This pull request makes the
bencodex-python
package apply it with the development build.