Skip to content

Commit bdf58cc

Browse files
committed
BLD: allow latest version (2.1) of python-dateutil in setup.py close #1851
1 parent ad33f4e commit bdf58cc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

RELEASE.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ pandas 0.8.2
101101
- Fix numerical issue leading to square root of negative number in
102102
rolling_std (#1840)
103103
- Let Series.str.split accept no arguments (like str.split) (#1859)
104+
- Allow user to have dateutil 2.1 installed on a Python 2 system (#1851)
104105

105106
pandas 0.8.1
106107
============

setup.py

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

5151
else:
5252
setuptools_kwargs = {
53-
'install_requires': ['python-dateutil < 2',
53+
'install_requires': ['python-dateutil',
5454
'pytz',
5555
'numpy >= 1.6'],
5656
'zip_safe' : False,

0 commit comments

Comments
 (0)