-
Notifications
You must be signed in to change notification settings - Fork 15
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
Drop runtime dependency on setuptools #9
Conversation
12bfdd3
to
62865c6
Compare
I am not sure I understand the mypy failure. Should I noqa it? |
It seems to be a known issue: python/mypy#1153 |
62865c6
to
d07ce14
Compare
Added |
But the pre-commit thing now made it uglier :( |
The setuptools package is a huge overkill to get self-version. Use the standard library instead on Python 3.8+, or a smaller package on older Pythons.
Verified 3.10 support by running the tests in Fedora Rawhide. Assuming Python 3.9 support as well.
e69b9d5
to
7f52843
Compare
I've tried really hard to make it both readable and acceptable by the robot overlords. |
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.
Thanks!
Very nice, I didn't know there is a more lightweight way to do this. |
The setuptools package is a huge overkill to get self-version.
Use the standard library instead on Python 3.8+,
or a smaller package on older Pythons.
Declare support for new Pythons (extra commit).