2 new commits in tox: https://bitbucket.org/hpk42/tox/commits/4c6c4662ffa3/ changeset: 4c6c4662ffa3 user: hpk42 date: 2013-02-19 15:51:20 summary: 1.4.3 affected #: 4 files
diff -r 3fa2f7ff4030297a6798475040b85702ed594806 -r 4c6c4662ffa38929e8f1667d8ec716e18ef7b513 CHANGELOG --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -1.4.3.dev +1.4.3 ----------------- - introduce -l|--listenv option to list configured environments diff -r 3fa2f7ff4030297a6798475040b85702ed594806 -r 4c6c4662ffa38929e8f1667d8ec716e18ef7b513 doc/announce/release-1.4.3.txt --- /dev/null +++ b/doc/announce/release-1.4.3.txt @@ -0,0 +1,94 @@ +tox 1.4.3: the Python virtualenv-based testing automatizer +============================================================================= + +tox 1.4.3 fixes some bugs and introduces a new script and two new options: + +- "tox-quickstart" - run this script, answer a few questions, and + get a tox.ini created for you (thanks Marc Abramowitz) + +- "tox -l" lists configured environment names (thanks Lukasz Balcerzak) + +- (experimental) "--installpkg=localpath" option which will skip the + sdist-creation of a package and instead install the given localpath package. + +Note that the sister project "detox" should continue to work - it's a +separately released project which drives tox test runs on multiple CPUs +in parallel. + +More documentation: + + http://tox.testrun.org/ + +Installation: + + pip install -U tox + +code hosting and issue tracking on bitbucket: + + https://bitbucket.org/hpk42/tox + + +What is tox? +---------------- + +tox standardizes and automates tedious test activities driven from a +simple ``tox.ini`` file, including: + +* creation and management of different virtualenv environments + with different Python interpreters +* packaging and installing your package into each of them +* running your test tool of choice, be it nose, py.test or unittest2 or other tools such as "sphinx" doc checks +* testing dev packages against each other without needing to upload to PyPI + +best, +Holger Krekel + + +CHANGELOG +================ + +1.4.3 (compared to 1.4.2) +-------------------------------- + +- introduce -l|--listenv option to list configured environments + (thanks Lukasz Balcerzak) + +- fix downloadcache determination to work according to docs: Only + make pip use a download cache if PIP_DOWNLOAD_CACHE or a + downloadcache=PATH testenv setting is present. (The ENV setting + takes precedence) + +- fix issue84 - pypy on windows creates a bin not a scripts venv directory + (thanks Lukasz Balcerzak) + +- experimentally introduce --installpkg=PATH option to install a package rather than + create/install an sdist package. This will still require and use + tox.ini and tests from the current working dir (and not from the remote + package). + +- substitute {envsitepackagesdir} with the package installation directory (closes #72) + (thanks g2p) + +- issue #70 remove PYTHONDONTWRITEBYTECODE workaround now that + virtualenv behaves properly (thanks g2p) + +- merged tox-quickstart command, contributed by Marc Abramowitz, which + generates a default tox.ini after asking a few questions + +- fix #48 - win32 detection of pypy and other interpreters that are on PATH + (thanks Gustavo Picon) + +- fix grouping of index servers, it is now done by name instead of + indexserver url, allowing to use it to separate dependencies + into groups even if using the same default indexserver. + +- look for "tox.ini" files in parent dirs of current dir (closes #34) + +- the "py" environment now by default uses the current interpreter + (sys.executable) make tox' own setup.py test execute tests with it + (closes #46) + +- change tests to not rely on os.path.expanduser (closes #60), + also make mock session return args[1:] for more precise checking (closes #61) + thanks to Barry Warszaw for both. + diff -r 3fa2f7ff4030297a6798475040b85702ed594806 -r 4c6c4662ffa38929e8f1667d8ec716e18ef7b513 setup.py --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ description='virtualenv-based automation of test activities', long_description=long_description, url='http://tox.testrun.org/', - version='1.4.3.dev7', + version='1.4.3', license='GPLv2 or later', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], author='holger krekel', diff -r 3fa2f7ff4030297a6798475040b85702ed594806 -r 4c6c4662ffa38929e8f1667d8ec716e18ef7b513 tox/__init__.py --- a/tox/__init__.py +++ b/tox/__init__.py @@ -1,5 +1,5 @@ # -__version__ = '1.4.3.dev7' +__version__ = '1.4.3' class exception: class Error(Exception): https://bitbucket.org/hpk42/tox/commits/69e75192ec3a/ changeset: 69e75192ec3a user: hpk42 date: 2013-02-19 16:00:49 summary: adding a little release announce affected #: 1 file diff -r 4c6c4662ffa38929e8f1667d8ec716e18ef7b513 -r 69e75192ec3afde1ff39b572726f6438e9572a89 doc/index.txt --- a/doc/index.txt +++ b/doc/index.txt @@ -108,6 +108,7 @@ announce/release-1.2 announce/release-1.3 announce/release-1.4 + announce/release-1.4.3 .. include:: links.txt 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