Skip to content

Commit

Permalink
min supported version is now python 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
qwcode committed May 1, 2013
1 parent 2fb0101 commit 41026b6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: python
python:
- "2.5"
- "2.6"
- "2.7"
- "3.2"
Expand Down
2 changes: 2 additions & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ Changes & News
1.10 (unreleased)
~~~~~~~~~~~~~~~~~

* Dropped support for Python 2.5. The minimum supported Python version is
now Python 2.6.
* Added support for PyPy3k
* Upgraded distribute to 0.6.36.
* Using ``virtualenv.py`` as an isolated script (i.e. without an associated ``virtualenv_support``
Expand Down
4 changes: 2 additions & 2 deletions virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
import struct
import subprocess

if sys.version_info < (2, 5):
if sys.version_info < (2, 6):
print('ERROR: %s' % sys.exc_info()[1])
print('ERROR: this script requires Python 2.5 or greater.')
print('ERROR: this script requires Python 2.6 or greater.')
sys.exit(101)

try:
Expand Down
Binary file removed virtualenv_support/setuptools-0.6c11-py2.5.egg
Binary file not shown.

0 comments on commit 41026b6

Please sign in to comment.