-
-
Notifications
You must be signed in to change notification settings - Fork 321
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
Remove Python 3.6 support #4642
Conversation
162edf2
to
2908fd2
Compare
@@ -1356,12 +1356,6 @@ def order(dependencies): | |||
# various print_* settings, tree_printer list, etc. | |||
BuildTask.options = options | |||
|
|||
is_pypy = platform.python_implementation() == 'PyPy' |
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.
why are you removing is_pypy ?
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.
It and is_37_or_later
were only used in the commented-out python_has_threads
variable. I could just leave it be, but I was already removing the redundant is_37_or_later
which would otherwise just be an unreferenced variable always returning True
, so removing that whole vestigial block felt more appropriate
Just a couple queries/requested changes and we should be able to merge. |
2908fd2
to
c28e720
Compare
My bad, didn't see your review until just now |
c28e720
to
37530ad
Compare
Also, would we want to mark 3.7 as deprecated as well? Or is that better suited for another PR and/or not necessary atm? |
let's do 3.7 separately |
Good work. THanks! |
Removes all references to the deprecated 3.6 version, updating documentation and tests to account for the new baseline. This is a deliberately standalone PR, as any functional changes that'd come from it are better suited for evaluation in an isolated environment.
Contributor Checklist:
CHANGES.txt
andRELEASE.txt
(and read theREADME.rst
).