-------------------
- 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)
- 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 `84 <https://github.com/tox-dev/tox/issues/84>`_ - 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 <https://github.com/tox-dev/tox/issues/72>`_) (thanks g2p)
- issue `70 <https://github.com/tox-dev/tox/issues/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 <https://github.com/tox-dev/tox/issues/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 <https://github.com/tox-dev/tox/issues/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 <https://github.com/tox-dev/tox/issues/46>`_)
- change tests to not rely on os.path.expanduser (closes `60 <https://github.com/tox-dev/tox/issues/60>`_),
also make mock session return args[1:] for more precise checking (closes `61 <https://github.com/tox-dev/tox/issues/61>`_)
thanks to Barry Warsaw for both.