1 new commit in tox: https://bitbucket.org/hpk42/tox/commits/338b48333f7c/ Changeset: 338b48333f7c User: hpk42 Date: 2015-03-11 19:31:47+00:00 Summary: fix issue227: use "-m virtualenv" instead of "-m virtualenv" to make it work with pyrun. Affected #: 4 files
diff -r 2bb340a10c90ec5f617013035e66a2a12ad27042 -r 338b48333f7cd3a4eab570498d93f69177ef8fb9 CHANGELOG --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,9 @@ - allow --force-deps to override dependencies in "-r" requirements files. Thanks Sontek for the PR. +- fix issue227: use "-m virtualenv" instead of "-m virtualenv" to make + it work with pyrun. + 1.9.0 ----------- diff -r 2bb340a10c90ec5f617013035e66a2a12ad27042 -r 338b48333f7cd3a4eab570498d93f69177ef8fb9 setup.py --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ description='virtualenv-based automation of test activities', long_description=open("README.rst").read(), url='http://tox.testrun.org/', - version='1.9.1.dev1', + version='1.9.1.dev2', license='http://opensource.org/licenses/MIT', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], author='holger krekel', diff -r 2bb340a10c90ec5f617013035e66a2a12ad27042 -r 338b48333f7cd3a4eab570498d93f69177ef8fb9 tox/__init__.py --- a/tox/__init__.py +++ b/tox/__init__.py @@ -1,5 +1,5 @@ # -__version__ = '1.9.1.dev1' +__version__ = '1.9.1.dev2' class exception: class Error(Exception): diff -r 2bb340a10c90ec5f617013035e66a2a12ad27042 -r 338b48333f7cd3a4eab570498d93f69177ef8fb9 tox/_venv.py --- a/tox/_venv.py +++ b/tox/_venv.py @@ -178,7 +178,7 @@ action = self.session.newaction(self, "create") config_interpreter = self.getsupportedinterpreter() - args = [sys.executable, '-mvirtualenv'] + args = [sys.executable, '-m', 'virtualenv'] if self.envconfig.distribute: args.append("--distribute") else: 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 https://mail.python.org/mailman/listinfo/pytest-commit