Skip to content

Commit dd61ed1

Browse files
committed
MNT: bump minimum python-dateutil version to 2.7
This was release in March 2018 and is the first version of python-dateutil that does not have deprecation warnings due to the collections -> collections.abc change in CPython.
1 parent c30f762 commit dd61ed1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

INSTALL.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Matplotlib requires the following dependencies:
147147
* `NumPy <https://numpy.org>`_ (>= 1.15)
148148
* `setuptools <https://setuptools.readthedocs.io/en/latest/>`_
149149
* `cycler <https://matplotlib.org/cycler/>`_ (>= 0.10.0)
150-
* `dateutil <https://pypi.org/project/python-dateutil>`_ (>= 2.1)
150+
* `dateutil <https://pypi.org/project/python-dateutil>`_ (>= 2.7)
151151
* `kiwisolver <https://github.com/nucleic/kiwi>`_ (>= 1.0.0)
152152
* `Pillow <https://pillow.readthedocs.io/en/latest/>`_ (>= 6.2)
153153
* `pyparsing <https://pypi.org/project/pyparsing/>`_ (>=2.0.3)
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Extra pip requirements for the first travis python 3.6 build
1+
# Extra pip requirements for the minimum-version travis run
22

33
cycler==0.10
4-
python-dateutil==2.1
4+
python-dateutil==2.7
55
numpy==1.15.0
66
pyparsing==2.0.3

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def build_extensions(self):
283283
"numpy>=1.15",
284284
"pillow>=6.2.0",
285285
"pyparsing>=2.0.3,!=2.0.4,!=2.1.2,!=2.1.6",
286-
"python-dateutil>=2.1",
286+
"python-dateutil>=2.7",
287287
],
288288

289289
cmdclass=cmdclass,

0 commit comments

Comments
 (0)