-
Notifications
You must be signed in to change notification settings - Fork 49
fix(resumable-media): fix failing unit tests by dropping Python 3.4, add Python 3.8 #118
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
Conversation
With the Python <=3.4 support dropped, byte string templates can be used, hooray!
noxfile.py
Outdated
|
|
||
|
|
||
| @nox.session(python=['2.7', '3.4', '3.5', '3.6', '3.7']) | ||
| @nox.session(python=['3.5', '3.6', '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.
Would you mind dropping 3.8 in here as well?
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.
Done.
I also bumped the Python versions in other sessions to 3.8, as I believe this a standard practice (running misc. checks with the latest supported version).
|
Before removing python 2.7 from resumable media we would need to remove it from |
|
I can revert dropping Python 2.7, that commit that introduced a byte string template is optional. Yes, I can add Python 3.8, too. |
THis is needed to retain Python 2.7 support for a little longer
Fixes #117.