[Pytest-commit] commit/tox: hpk42: fix issue126: depend on virtualenv>=1.10.1 so that we can rely

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Thu Oct 24 09:44:01 CEST 2013


1 new commit in tox:

https://bitbucket.org/hpk42/tox/commits/7a16cd37007c/
Changeset:   7a16cd37007c
User:        hpk42
Date:        2013-10-24 09:43:56
Summary:     fix issue126: depend on virtualenv>=1.10.1 so that we can rely
(hopefully) on a pip version which supports --pre. (tox by default
uses to --pre).  Note that tox also vendors an older virtualenv
for supporting python2.5 -- although the latter will be dropped at some point.
Affected #:  2 files

diff -r eb83611a8e03c7f61d1a43d86cc79f4578baa64e -r 7a16cd37007c630dff269878a542c16bbaf6cf68 CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,9 +1,14 @@
 1.6.2.dev
 ---------
 
+- fix issue126: depend on virtualenv>=1.10.1 so that we can rely
+  (hopefully) on a pip version which supports --pre. (tox by default
+  uses to --pre).  Note that tox also vendors an older virtualenv 
+  for supporting python2.5 -- although the latter will be dropped at some point.
+
 - fix issue130: you can now set install_command=easy_install {opts} {packages}
-  and expect it to run without the need to recreate.  Thanks jenisys for
-  precise reporting. 
+  and expect it to work for repeated tox runs (previously it only worked
+  when always recreating).  Thanks jenisys for precise reporting. 
 
 - fix issue129: tox now uses Popen(..., universal_newlines=True) to force 
   creation of unicode stdout/stderr streams.  fixes a problem on specific

diff -r eb83611a8e03c7f61d1a43d86cc79f4578baa64e -r 7a16cd37007c630dff269878a542c16bbaf6cf68 setup.py
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
 
 def main():
     version = sys.version_info[:2]
-    install_requires = ['virtualenv>=1.9.1', 'py>=1.4.15', ]
+    install_requires = ['virtualenv>=1.10.1', 'py>=1.4.17', ]
     if version < (2, 7) or (3, 0) <= version <= (3, 1):
         install_requires += ['argparse']
     if version < (2,6):

Repository URL: https://bitbucket.org/hpk42/tox/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.


More information about the pytest-commit mailing list