testing python2.5. test version fix for dateutil 1.5. Fixes #68

pull/81/head
Johannes Raggam 2012-11-23 14:36:04 +01:00
rodzic 0457124bf3
commit f100fc2839
2 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -6,7 +6,7 @@ shortdesc = 'iCalendar parser/generator'
longdesc = open('README.rst').read()
longdesc += open('CHANGES.rst').read()
longdesc += open('LICENSE.rst').read()
tests_require = ['unittest2', 'python-dateutil']
tests_require = ['unittest2', 'python-dateutil==1.5']
setuptools.setup(
name='icalendar',

Wyświetl plik

@ -1,5 +1,6 @@
[tox]
envlist = py24,py27
envlist = py24,py25,py27
#envlist = py24,py27
#envlist = py24,py25,py26,py27,py32
[testenv]
@ -7,7 +8,7 @@ deps =
icalendar
unittest2
coverage
python-dateutil
python-dateutil==1.5
commands =
coverage erase
coverage run --source=icalendar --omit=*tests* {envbindir}/unit2 discover icalendar []