-
Notifications
You must be signed in to change notification settings - Fork 56
chore: Remove support for python 2 #173
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
78cab04
to
cfb1257
Compare
Glad you caught that. Have you run a generic grep for py2? |
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.
enum34; python_version < '3.4'
I am not sure what the ;
notation does in a requirements file, but if I had to guess it would be for python < 3.4 require enum34. Which is no longer needed.
Yup, that's right. "If our python version is less than 3.4, we depend on enum34". Looks like the enum34 package is a backporting of a new feature introduced in Python 3.4 into older versions of Python, which means we do not need it. Good find! |
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.
Extra Groovy
Description of changes:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.