summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2013-08-15 13:00:38 +0200
committerholger krekel <holger@merlinux.eu>2013-08-15 13:00:38 +0200
commitb4a36312b945623667a8c156e8f8b0ef7561edf2 (patch)
tree54018b20155b871c32f8a6362358035352fb855d /CHANGELOG
parent4b82018b3ed3008a5a00787ece4697fc5ab477fa (diff)
downloadtox-b4a36312b945623667a8c156e8f8b0ef7561edf2.tar.gz
refine python2.5 and install_command behaviour and documentation. also show i in "--showconfig"
and rename internally from "install_command_argv" to install_command for consistency. also deprecate downloadcache, distribute settings.
Diffstat (limited to 'CHANGELOG')
-rwxr-xr-xCHANGELOG15
1 files changed, 11 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index c1af7ad..3acaf89 100755
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,17 @@
1.6.0.dev
-----------------
+- fix issue35: add new EXPERIMENTAL "install_command" testenv-option to configure the
+ installation command with options for dep/pkg install. Thanks Carl Meyer
+ for the PR and docs.
+
+
+- address issueintroduce python2.5 support by vendoring the virtualenv-1.9.1 script
+ and forcing pip<1.4. Also the default [py25] environment modifies the
+ default installer_command (new config option) to use pip without the "--pre"
+ which was introduced with pip-1.4 and is required if you want to install non-stable releases.
+ (tox defaults to install with "--pre" otherwise).
+
- fix issue1: empty setup files are properly detected, thanks Anthon van
der Neuth
@@ -11,10 +22,6 @@
- remove toxbootstrap.py for now because it is broken.
-- fix issue35: add new "install_command" testenv-option to configure the
- installation command with options for dep/pkg install. Thanks Carl Meyer
- for the PR and docs.
-
- fix issue109 and fix issue111: multiple "-e" options are now combined
(previously the last one would win). Thanks Anthon van der Neut.