-
Notifications
You must be signed in to change notification settings - Fork 106
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
Add supported versions of python to setup script #651
Conversation
Signed-off-by: Michal Konečný <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #651 +/- ##
=======================================
Coverage 91.03% 91.03%
=======================================
Files 56 56
Lines 2698 2698
Branches 354 354
=======================================
Hits 2456 2456
Misses 187 187
Partials 55 55 Continue to review full report at Codecov.
|
setup.py
Outdated
@@ -62,6 +62,12 @@ def get_requirements(requirements_file='requirements.txt'): | |||
license='GPLv2+', | |||
download_url='https://fedorahosted.org/releases/a/n/anitya/', | |||
url='https://fedorahosted.org/anitya/', | |||
classifiers=[ | |||
"Programming Language :: Python :: 2.7", |
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.
While Python 2.7 may still work, I wouldn't try to support it since we run 3 in production. I'd say supporting Python 3.6+ is reasonable (unless there's a nice API from 3.7 you want to use)
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.
You are right, the Python 2.7 shouldn't be there.
Signed-off-by: Michal Konečný <[email protected]>
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.
✨
Signed-off-by: Michal Konečný [email protected]