Skip to content

Commit 9e63f0e

Browse files
committed
TST: check for dateutil 2.1 too pandas-dev#1594
1 parent 221ab06 commit 9e63f0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tseries/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# raise exception if dateutil 2.0 install on 2.x platform
1616
if (sys.version_info[0] == 2 and
17-
dateutil.__version__ == '2.0'): # pragma: no cover
17+
dateutil.__version__ >= '2.0'): # pragma: no cover
1818
raise Exception('dateutil 2.0 incompatible with Python 2.x, you must '
1919
'install version 1.5!')
2020
except ImportError: # pragma: no cover

0 commit comments

Comments
 (0)