[Python-checkins] distutils2: added py24 and py26-setuptools targets
tarek.ziade
python-checkins at python.org
Sun Sep 19 13:00:13 CEST 2010
tarek.ziade pushed 24de7f2409d8 to distutils2:
http://hg.python.org/distutils2/rev/24de7f2409d8
changeset: 679:24de7f2409d8
user: Tarek Ziade <tarek at ziade.org>
date: Sun Sep 19 12:59:55 2010 +0200
summary: added py24 and py26-setuptools targets
files: tox.ini
diff --git a/tox.ini b/tox.ini
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
[tox]
#distshare={homedir}/.tox/distshare
-envlist=py25,py26,py27
+envlist=py24,py25,py26,py26-s,py27
#[tox:hudson]
#distshare={toxworkdir}/distshare
@@ -12,7 +12,18 @@
deps=
unittest2
+[testenv:py26-s]
+distribute=False
+
[testenv:py27]
basepython=python2.7
commands=
python -Wd -bb -3 runtests.py
+
+[testenv:py24]
+basepython=python2.4
+commands=
+ rm -f distutils2/_backport/_hashlib.so
+ python setup.py build_ext -f
+ python -Wd runtests.py
+
--
Repository URL: http://hg.python.org/distutils2
More information about the Python-checkins
mailing list