Skip to content

Commit d4e6e6b

Browse files
committed
Merge branch 'hotfix/1.6.4' into develop
2 parents c4c66ff + a9ef1c5 commit d4e6e6b

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#
4343
# The short X.Y version.
4444

45-
release = "1.6.3"
45+
release = "1.6.4"
4646
version = ".".join(release.split(".")[:2])
4747

4848
# There are two options for replacing |today|: either, you set today to some

docs/news.txt

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ Next release (1.7) schedule
66

77
Beta release mid-July 2011, final release early August.
88

9+
1.6.4 (2011-07-21)
10+
~~~~~~~~~~~~~~~~~~
11+
12+
* Restored ability to run on Python 2.4, too.
13+
914
1.6.3 (2011-07-16)
1015
~~~~~~~~~~~~~~~~~~
1116

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
setup(name='virtualenv',
2727
# If you change the version here, change it in virtualenv.py and
2828
# docs/conf.py as well
29-
version="1.6.3",
29+
version="1.6.4",
3030
description="Virtual Python Environment builder",
3131
long_description=long_description,
3232
classifiers=[

tests/test_virtualenv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
def test_version():
66
"""Should have a version string"""
7-
assert virtualenv.virtualenv_version == "1.6.3", "Should have version"
7+
assert virtualenv.virtualenv_version == "1.6.4", "Should have version"
88

99

1010
@patch('os.path.exists')

virtualenv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# If you change the version here, change it in setup.py
66
# and docs/conf.py as well.
7-
virtualenv_version = "1.6.3"
7+
virtualenv_version = "1.6.4"
88

99
import base64
1010
import sys

0 commit comments

Comments
 (0)