fix issue209 - depend on pylib dev version which again supports python2.4
This commit is contained in:
parent
7e831b66ec
commit
d5ad91c64f
|
@ -13,6 +13,10 @@ Changes between 2.3.2 and 2.3.3.dev
|
||||||
- fix issue148 - @unittest.skip on classes is now recognized and avoids
|
- fix issue148 - @unittest.skip on classes is now recognized and avoids
|
||||||
calling setUpClass/tearDownClass
|
calling setUpClass/tearDownClass
|
||||||
|
|
||||||
|
- fix issue209 - reintroduce python2.4 support by depending on newer
|
||||||
|
pylib which re-introduced statement-finding for pre-AST interpreters
|
||||||
|
|
||||||
|
|
||||||
Changes between 2.3.1 and 2.3.2
|
Changes between 2.3.1 and 2.3.2
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -33,7 +33,7 @@ def main():
|
||||||
entry_points= make_entry_points(),
|
entry_points= make_entry_points(),
|
||||||
cmdclass = {'test': PyTest},
|
cmdclass = {'test': PyTest},
|
||||||
# the following should be enabled for release
|
# the following should be enabled for release
|
||||||
install_requires=['py>=1.4.11'],
|
install_requires=['py>=1.4.12.dev1'],
|
||||||
classifiers=['Development Status :: 6 - Mature',
|
classifiers=['Development Status :: 6 - Mature',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
|
|
4
tox.ini
4
tox.ini
|
@ -1,10 +1,10 @@
|
||||||
[tox]
|
[tox]
|
||||||
distshare={homedir}/.tox/distshare
|
distshare={homedir}/.tox/distshare
|
||||||
envlist=py26,py27,py27-nobyte,py31,py32,py33,py27-xdist,py25,trial
|
envlist=py24,py26,py27,py27-nobyte,py31,py32,py33,py27-xdist,py25,trial
|
||||||
indexserver=
|
indexserver=
|
||||||
pypi = http://pypi.python.org/simple
|
pypi = http://pypi.python.org/simple
|
||||||
testrun = http://pypi.testrun.org
|
testrun = http://pypi.testrun.org
|
||||||
#default = http://pypi.testrun.org
|
default = http://pypi.testrun.org
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
changedir=testing
|
changedir=testing
|
||||||
|
|
Loading…
Reference in New Issue