-
Notifications
You must be signed in to change notification settings - Fork 37
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: support python 3.9 #397
Conversation
Codecov Report
@@ Coverage Diff @@
## master #397 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 19 19
Lines 1005 1005
=========================================
Hits 1005 1005 |
colorama==0.4.4 # via twine | ||
colored==1.4.2 # via syrupy | ||
configparser==5.0.1 # via py-githooks | ||
coverage[toml]==5.3 # via codecov, syrupy | ||
cryptography==3.2.1 # via secretstorage |
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.
This comes from secretstorage which is a direct dependency of keyring. It's only required on linux and so disappears whenever requirements are updated manually on Mac.
@@ -11,7 +11,7 @@ | |||
install_requires = [ | |||
"attrs>=18.2.0,<21.0.0", | |||
"colored>=1.3.92,<2.0.0", | |||
"typing_extensions>=3.6,<4.0.0", | |||
"typing_extensions>=3.6,<4.0.0; python_version < '3.7.0'", |
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.
No need to install typing_extensions on >=3.7.
## [0.8.1](v0.8.0...v0.8.1) (2020-10-29) ### Bug Fixes * support python 3.9 ([#397](#397)) ([6013e9a](6013e9a))
🎉 This PR is included in version 0.8.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
No description provided.