-
Notifications
You must be signed in to change notification settings - Fork 19
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
Release restriction on Python 3.8 (collections import) #142
Conversation
…ts. pkg_resources deprecated - move version.
…ee, as it was already in setup
Well, and here I was saying to myself, echoing what previous speakers have said: we should migrate install to poetry as we move to 3.8. But then I went, let's just leave 3.8 first, and do poetry separately not to change too much. Famous last words.
|
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.
Nice work @dnil! As you say in your comment it would be good to eventually move to poetry.
Confirmed to be working for ranking SNVs on a full test case, python version 3.12
|
||
try: | ||
from importlib.metadata import version | ||
except ImportError: # Backport support for importlib metadata on Python 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.
Very considerate to not drop support for python 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.
We are after all just barely leaving it formally. Though the jump to 3.13 is considerable. 😊
Description
How to prepare for test
us
paxa
How to test
Expected test outcome
Review
Thanks for filling in who performed the code review and the test!
This version is a
Implementation Plan