Skip to content

Commit

Permalink
fix python-dateutil to allow newer verions (besides the one that won't
Browse files Browse the repository at this point in the history
work on 2.x)
  • Loading branch information
dstufft authored and toastdriven committed Aug 23, 2012
1 parent 897a3d5 commit c1eaaf0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,6 +1,6 @@
Django>=1.0.0 Django>=1.0.0
mimeparse>=0.1.3 mimeparse>=0.1.3
python-dateutil==1.5 python-dateutil>=2.1
lxml lxml
PyYAML PyYAML
python-digest python-digest
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -30,11 +30,11 @@
zip_safe=False, zip_safe=False,
requires=[ requires=[
'mimeparse', 'mimeparse',
'dateutil(>=1.5, < 2.0)', 'dateutil(>=1.5, !=2.0)',
], ],
install_requires=[ install_requires=[
'mimeparse', 'mimeparse',
'python_dateutil >= 1.5, < 2.0', 'python_dateutil >= 1.5, != 2.0',
], ],
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.txt
Expand Up @@ -5,4 +5,4 @@ python-digest
biplist biplist
pyyaml pyyaml
mimeparse>=0.1.3 mimeparse>=0.1.3
python-dateutil==1.5 python-dateutil>=2.1

0 comments on commit c1eaaf0

Please sign in to comment.