Hello community, here is the log from the commit of package python3-tox for openSUSE:Factory checked in at 2015-06-06 09:54:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python3-tox (Old) and /work/SRC/openSUSE:Factory/.python3-tox.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-tox" Changes: -------- --- /work/SRC/openSUSE:Factory/python3-tox/python3-tox.changes 2015-05-29 10:39:21.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.python3-tox.new/python3-tox.changes 2015-06-06 09:54:16.000000000 +0200 @@ -1,0 +2,9 @@ +Fri Jun 5 00:45:54 UTC 2015 - [email protected] + +- update to version 2.0.2: + * fix issue247: tox now passes the LANG variable from the tox invocation + environment to the test environment by default. + * add SYSTEMDRIVE into default passenv on windows to allow pip6 to work. + Thanks Michael Krause. + +------------------------------------------------------------------- Old: ---- tox-2.0.1.tar.gz New: ---- tox-2.0.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python3-tox.spec ++++++ --- /var/tmp/diff_new_pack.jrnKlh/_old 2015-06-06 09:54:17.000000000 +0200 +++ /var/tmp/diff_new_pack.jrnKlh/_new 2015-06-06 09:54:17.000000000 +0200 @@ -17,7 +17,7 @@ Name: python3-tox -Version: 2.0.1 +Version: 2.0.2 Release: 0 Summary: Virtualenv-based automation of test activities License: MIT ++++++ tox-2.0.1.tar.gz -> tox-2.0.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tox-2.0.1/CHANGELOG new/tox-2.0.2/CHANGELOG --- old/tox-2.0.1/CHANGELOG 2015-05-13 01:13:37.000000000 +0200 +++ new/tox-2.0.2/CHANGELOG 2015-06-03 13:53:21.000000000 +0200 @@ -1,3 +1,13 @@ +2.0.2 +---------- + +- fix issue247: tox now passes the LANG variable from the tox invocation + environment to the test environment by default. + +- add SYSTEMDRIVE into default passenv on windows to allow pip6 to work. + Thanks Michael Krause. + + 2.0.1 ----------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tox-2.0.1/PKG-INFO new/tox-2.0.2/PKG-INFO --- old/tox-2.0.1/PKG-INFO 2015-05-13 01:13:38.000000000 +0200 +++ new/tox-2.0.2/PKG-INFO 2015-06-03 13:53:21.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: tox -Version: 2.0.1 +Version: 2.0.2 Summary: virtualenv-based automation of test activities Home-page: http://tox.testrun.org/ Author: holger krekel @@ -10,7 +10,7 @@ What is Tox? -------------------- - Tox as is a generic virtualenv management and test command line tool you can use for: + Tox is a generic virtualenv management and test command line tool you can use for: * checking your package installs correctly with different Python versions and interpreters diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tox-2.0.1/README.rst new/tox-2.0.2/README.rst --- old/tox-2.0.1/README.rst 2015-05-13 01:13:37.000000000 +0200 +++ new/tox-2.0.2/README.rst 2015-06-03 13:53:21.000000000 +0200 @@ -2,7 +2,7 @@ What is Tox? -------------------- -Tox as is a generic virtualenv management and test command line tool you can use for: +Tox is a generic virtualenv management and test command line tool you can use for: * checking your package installs correctly with different Python versions and interpreters diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tox-2.0.1/setup.py new/tox-2.0.2/setup.py --- old/tox-2.0.1/setup.py 2015-05-13 01:13:37.000000000 +0200 +++ new/tox-2.0.2/setup.py 2015-06-03 13:53:21.000000000 +0200 @@ -48,7 +48,7 @@ description='virtualenv-based automation of test activities', long_description=open("README.rst").read(), url='http://tox.testrun.org/', - version='2.0.1', + version='2.0.2', license='http://opensource.org/licenses/MIT', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], author='holger krekel', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tox-2.0.1/tests/test_config.py new/tox-2.0.2/tests/test_config.py --- old/tox-2.0.1/tests/test_config.py 2015-05-13 01:13:37.000000000 +0200 +++ new/tox-2.0.2/tests/test_config.py 2015-06-03 13:53:21.000000000 +0200 @@ -709,6 +709,7 @@ envconfig = config.envconfigs['python'] if plat == "win32": assert "PATHEXT" in envconfig.passenv + assert "SYSTEMDRIVE" in envconfig.passenv assert "SYSTEMROOT" in envconfig.passenv assert "TEMP" in envconfig.passenv assert "TMP" in envconfig.passenv @@ -716,6 +717,7 @@ assert "TMPDIR" in envconfig.passenv assert "PATH" in envconfig.passenv assert "PIP_INDEX_URL" in envconfig.passenv + assert "LANG" in envconfig.passenv assert "A123A" in envconfig.passenv assert "A123B" in envconfig.passenv diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tox-2.0.1/tox/__init__.py new/tox-2.0.2/tox/__init__.py --- old/tox-2.0.1/tox/__init__.py 2015-05-13 01:13:38.000000000 +0200 +++ new/tox-2.0.2/tox/__init__.py 2015-06-03 13:53:21.000000000 +0200 @@ -1,5 +1,5 @@ # -__version__ = '2.0.1' +__version__ = '2.0.2' from .hookspecs import hookspec, hookimpl # noqa diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tox-2.0.1/tox/config.py new/tox-2.0.2/tox/config.py --- old/tox-2.0.1/tox/config.py 2015-05-13 01:13:38.000000000 +0200 +++ new/tox-2.0.2/tox/config.py 2015-06-03 13:53:21.000000000 +0200 @@ -387,15 +387,16 @@ help="list of X=Y lines with environment variable settings") def passenv(testenv_config, value): - passenv = set(["PATH", "PIP_INDEX_URL"]) + passenv = set(["PATH", "PIP_INDEX_URL", "LANG"]) # we ensure that tmp directory settings are passed on # we could also set it to the per-venv "envtmpdir" # but this leads to very long paths when run with jenkins # so we just pass it on by default for now. if sys.platform == "win32": - passenv.add("SYSTEMROOT") # needed for python's crypto module - passenv.add("PATHEXT") # needed for discovering executables + passenv.add("SYSTEMDRIVE") # needed for pip6 + passenv.add("SYSTEMROOT") # needed for python's crypto module + passenv.add("PATHEXT") # needed for discovering executables passenv.add("TEMP") passenv.add("TMP") else: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tox-2.0.1/tox.egg-info/PKG-INFO new/tox-2.0.2/tox.egg-info/PKG-INFO --- old/tox-2.0.1/tox.egg-info/PKG-INFO 2015-05-13 01:13:38.000000000 +0200 +++ new/tox-2.0.2/tox.egg-info/PKG-INFO 2015-06-03 13:53:21.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: tox -Version: 2.0.1 +Version: 2.0.2 Summary: virtualenv-based automation of test activities Home-page: http://tox.testrun.org/ Author: holger krekel @@ -10,7 +10,7 @@ What is Tox? -------------------- - Tox as is a generic virtualenv management and test command line tool you can use for: + Tox is a generic virtualenv management and test command line tool you can use for: * checking your package installs correctly with different Python versions and interpreters
