[Pytest-commit] commit/tox: 3 new changesets

Bitbucket commits-noreply at bitbucket.org
Wed Feb 20 09:11:48 CET 2013


3 new commits in tox:

https://bitbucket.org/hpk42/tox/commits/b6ec4cd8f448/
changeset:   b6ec4cd8f448
branch:      develop-pip-win32
user:        RonnyPfannschmidt
date:        2013-02-20 09:08:15
summary:     add Philip to the contributors list
affected #:  1 file

diff -r 6abfe6e2646c7af908adbcfbac30b8491d732a5a -r b6ec4cd8f4482371bfddfcaff9b8276dc0f57fd4 CONTRIBUTORS
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -7,3 +7,4 @@
 Jannis Leidl
 Ronny Pfannschmidt
 Lukasz Balcerzak 
+Philip Thiem


https://bitbucket.org/hpk42/tox/commits/481258d96e16/
changeset:   481258d96e16
branch:      develop-pip-win32
user:        RonnyPfannschmidt
date:        2013-02-20 09:09:50
summary:     changelog
affected #:  1 file

diff -r b6ec4cd8f4482371bfddfcaff9b8276dc0f57fd4 -r 481258d96e16c7eb8de24898210da37470c89d0f CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,9 @@
 1.4.3
 -----------------
 
+- use pip-script.py instead of pip.exe on win32 to avoid the lock exe file on execution issue
+  (thanks Philip Thiem)
+
 - introduce -l|--listenv option to list configured environments
   (thanks  Lukasz Balcerzak)
 


https://bitbucket.org/hpk42/tox/commits/1f4d321c5a55/
changeset:   1f4d321c5a55
branch:      develop-pip-win32
user:        RonnyPfannschmidt
date:        2013-02-20 09:10:50
summary:     extra comment
affected #:  1 file

diff -r 481258d96e16c7eb8de24898210da37470c89d0f -r 1f4d321c5a55f650bde35ca2fac5203da22e4a11 tox/_venv.py
--- a/tox/_venv.py
+++ b/tox/_venv.py
@@ -211,6 +211,7 @@
 
     def pip_install(self, args, indexserver=None, action=None):
         argv = ["pip", "install"] + self._commoninstallopts(indexserver)
+        # use pip-script on win32 to avoid the executable locking
         if sys.platform == "win32":
             argv[0] = "pip-script.py"
         if self.envconfig.downloadcache:

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