-
Notifications
You must be signed in to change notification settings - Fork 192
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
require minimum supported Python version for installation #2075
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
Codecov Report
@@ Coverage Diff @@
## dev #2075 +/- ##
==========================================
+ Coverage 67.76% 67.79% +0.03%
==========================================
Files 43 43
Lines 5559 5559
==========================================
+ Hits 3767 3769 +2
+ Misses 1792 1790 -2
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
@@ -35,6 +35,7 @@ | |||
"console_scripts": ["nf-core=nf_core.__main__:run_nf_core"], | |||
"refgenie.hooks.post_update": ["nf-core-refgenie=nf_core.refgenie:update_config"], | |||
}, | |||
python_requires=">=3.7, <4", |
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.
Python 4, is that a thing?? 😰 😅
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.
🤷
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.
But I guess we would want to make sure it works before supporting it 😅
It is hitherto possible to install nf-core tools with pip and unsupported older Python versions. This PR prevents that.
Closes #1876
PR checklist
CHANGELOG.md
is updateddocs
is updated