-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Drop support for Python 2.6 #4343
Changes from 15 commits
84b42ba
6bd1f43
904fcf1
c778948
28d4954
23b03de
e341417
a504ebd
0708de5
59cb562
ceb7fee
310bcfc
24bc64f
0992a81
0eae029
16944a6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
try: | ||
from collections import OrderedDict | ||
except ImportError: | ||
from pip._vendor.ordereddict import OrderedDict | ||
from ordereddict import OrderedDict | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nah, this comes from html5lib and since we're no longer vendoring it then we leave the import alone. |
||
|
||
|
||
class Filter(base.Filter): | ||
|
This file was deleted.
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.
might want to re-add the comment 😉
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.
The comment isn't true anymore either. Later versions of Python need it in order to download the Python version on demand.