File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ Dependencies
200
200
201
201
* `setuptools <https://setuptools.readthedocs.io/en/latest/ >`__
202
202
* `NumPy <http://www.numpy.org >`__: 1.9.0 or higher
203
- * `python-dateutil <//https://dateutil.readthedocs.io/en/stable/ >`__: 2.5 or higher
203
+ * `python-dateutil <//https://dateutil.readthedocs.io/en/stable/ >`__: 2.5.0 or higher
204
204
* `pytz <http://pytz.sourceforge.net/ >`__
205
205
206
206
.. _install.recommended_dependencies :
Original file line number Diff line number Diff line change 19
19
import versioneer
20
20
cmdclass = versioneer .get_cmdclass ()
21
21
22
- PY3 = sys .version_info [0 ] >= 3
23
-
24
22
25
23
def is_platform_windows ():
26
24
return sys .platform == 'win32' or sys .platform == 'cygwin'
@@ -46,7 +44,7 @@ def is_platform_mac():
46
44
min_numpy_ver = '1.9.0'
47
45
setuptools_kwargs = {
48
46
'install_requires' : [
49
- 'python-dateutil >= 2' if PY3 else 'python-dateutil ' ,
47
+ 'python-dateutil >= 2.5.0 ' ,
50
48
'pytz >= 2011k' ,
51
49
'numpy >= {numpy_ver}' .format (numpy_ver = min_numpy_ver ),
52
50
],
You can’t perform that action at this time.
0 commit comments