-
Notifications
You must be signed in to change notification settings - Fork 404
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop support for end-of-lifed Python versions
The following versions of Python are no longer supported by the core developers of Python and pip: - Python 2.6 - End of life on 2013-10-29 [1] - Dropped from pip on 2017-03-18 [2] - Python 3.3 - End of life on 2017-09-29 [3] - Dropped from pip on 2017-03-22 [4] Developers should migrate off of these versions ASAP, as they may be missing critical security fixes. [1] https://www.python.org/dev/peps/pep-0361/#release-lifespan [2] pypa/pip#4343 [3] https://www.python.org/dev/peps/pep-0398/#lifespan [4] pypa/pip#4355
- Loading branch information
Showing
4 changed files
with
2 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tox] | ||
envlist = py26, py27, py33, py34, py35 | ||
envlist = py27, py34, py35 | ||
|
||
[testenv] | ||
setenv = | ||
|