diff options
author | Jannis Leidel <jannis@leidel.info> | 2011-05-01 00:44:23 +0200 |
---|---|---|
committer | Jannis Leidel <jannis@leidel.info> | 2011-05-01 00:44:23 +0200 |
commit | 53b7b5ac8bf4605a27ba5abfb97256a109949473 (patch) | |
tree | 3963dff5d70501af2337b21eb69cbfbd779aded4 | |
parent | 7995bd25ceb2c9e50a4a8cb00c90326297babba6 (diff) | |
parent | f239baad2757c434a219067e93bc65abb90dc3bd (diff) | |
download | virtualenv-1.6.1.tar.gz |
Merge branch 'release/1.6.1'1.6.1
-rw-r--r-- | tests/test_virtualenv.py | 2 | ||||
-rw-r--r-- | virtualenv.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_virtualenv.py b/tests/test_virtualenv.py index 9181827..d44fbf2 100644 --- a/tests/test_virtualenv.py +++ b/tests/test_virtualenv.py @@ -4,7 +4,7 @@ from mock import patch, Mock def test_version(): """Should have a version string""" - assert virtualenv.virtualenv_version == "1.6", "Should have version" + assert virtualenv.virtualenv_version == "1.6.1", "Should have version" @patch('os.path.exists') diff --git a/virtualenv.py b/virtualenv.py index 51a7549..db21ecd 100644 --- a/virtualenv.py +++ b/virtualenv.py @@ -4,7 +4,7 @@ # If you change the version here, change it in setup.py # and docs/conf.py as well. -virtualenv_version = "1.6" +virtualenv_version = "1.6.1" import base64 import sys |