3 new commits in tox: https://bitbucket.org/hpk42/tox/commits/705fcf417a23/ Changeset: 705fcf417a23 User: Anthon van der Neut Date: 2013-08-04 12:23:20 Summary: fix for #108 Affected #: 1 file
diff -r fb612de381a79f8d7bff9cf2e0bc8fab42237efd -r 705fcf417a2378d39079859e40ac233256974cb0 tox/_venv.py --- a/tox/_venv.py +++ b/tox/_venv.py @@ -191,6 +191,8 @@ args.append("--setuptools") if self.envconfig.sitepackages: args.append('--system-site-packages') + # add interpreter explicitly, to prevent using default (virtualenv.ini) + args.extend(['--python', config_interpreter]) #if sys.platform == "win32": # f, path, _ = py.std.imp.find_module("virtualenv") # f.close() https://bitbucket.org/hpk42/tox/commits/eb15ead41d33/ Changeset: eb15ead41d33 User: Anthon van der Neut Date: 2013-08-05 09:40:38 Summary: stringify config_interpreter Affected #: 1 file diff -r 705fcf417a2378d39079859e40ac233256974cb0 -r eb15ead41d337593a95b91127ce147fe1a23457c tox/_venv.py --- a/tox/_venv.py +++ b/tox/_venv.py @@ -192,7 +192,7 @@ if self.envconfig.sitepackages: args.append('--system-site-packages') # add interpreter explicitly, to prevent using default (virtualenv.ini) - args.extend(['--python', config_interpreter]) + args.extend(['--python', str(config_interpreter)]) #if sys.platform == "win32": # f, path, _ = py.std.imp.find_module("virtualenv") # f.close() https://bitbucket.org/hpk42/tox/commits/bfa0702aae24/ Changeset: bfa0702aae24 User: hpk42 Date: 2013-08-06 16:04:45 Summary: Merged in anthon_van_der_neut/tox (pull request #53) fix for #108 Affected #: 1 file diff -r ac76a1851c8b72ffae3f47a209f23496197870d4 -r bfa0702aae2488ce8f7530e1e9d80b66de3d0256 tox/_venv.py --- a/tox/_venv.py +++ b/tox/_venv.py @@ -191,6 +191,8 @@ args.append("--setuptools") if self.envconfig.sitepackages: args.append('--system-site-packages') + # add interpreter explicitly, to prevent using default (virtualenv.ini) + args.extend(['--python', str(config_interpreter)]) #if sys.platform == "win32": # f, path, _ = py.std.imp.find_module("virtualenv") # f.close() 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. _______________________________________________ pytest-commit mailing list pytest-commit@python.org http://mail.python.org/mailman/listinfo/pytest-commit