-
Notifications
You must be signed in to change notification settings - Fork 23
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
move from 3.6 to 3.7 #2909
move from 3.6 to 3.7 #2909
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## devel #2909 +/- ##
==========================================
- Coverage 44.54% 41.85% -2.70%
==========================================
Files 96 95 -1
Lines 10555 10535 -20
==========================================
- Hits 4702 4409 -293
- Misses 5853 6126 +273 ☔ View full report in Codecov by Sentry. |
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.
have a second thought on this change - should it be merged not with the upcoming release? (or even the one after the next?). While SAGA is still the main interface to HPCs, thus not to rush with this enforcement
.github/workflows/ci.yml
Outdated
include: | ||
- os: ubuntu-20.04 | ||
python-version: '3.6' | ||
python-version: '3.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.
these 3 lines could be removed then (3.7 is in matrix already)
include: | ||
- os: ubuntu-20.04 | ||
python-version: '3.6' | ||
python-version: '3.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.
same as above, all three lines to be removed
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.
will do
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.
@mtitov : Sorry, I lost the context of this comment - what lines should be removed?
setup.py
Outdated
@@ -167,9 +167,9 @@ def get_version(_mod_root): | |||
|
|||
|
|||
# ------------------------------------------------------------------------------ | |||
# check python version, should be >= 3.6 | |||
# check python version, should be >= 3.7 | |||
if sys.hexversion < 0x03060000: |
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.
if sys.hexversion < 0x03070000:
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.
Ah, I knew we had this somewhere - overlooked... Thanks!
Yeah, I don't mind pushing that down the road a bit. |
Note that you will also need to update the |
@andre-merzky we can close this PR considering that it is part of other one, which we push right now, and I'll add comments there in regards of this topic. |
Agree - thanks! |
No description provided.