Skip to content

Commit cb7b60f

Browse files
authored
Merge pull request #9099 from tacaswell/bld_minimum_dateutil
BLD: bump minimum dateutil to 2.0
2 parents 9d3b14c + 38137a6 commit cb7b60f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

INSTALL.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ Matplotlib requires a large number of dependencies:
178178
* `Python <https://www.python.org/downloads/>`_ (>= 2.7 or >= 3.4)
179179
* `NumPy <http://www.numpy.org>`_ (>= |minimum_numpy_version|)
180180
* `setuptools <https://setuptools.readthedocs.io/en/latest/>`__
181-
* dateutil (>= 1.1)
181+
* `dateutil <https://pypi.python.org/pypi/python-dateutil>`_ (>= 2.0)
182182
* `pyparsing <https://pyparsing.wikispaces.com/>`__
183183
* `libpng <http://www.libpng.org>`__ (>= 1.2)
184184
* `pytz <http://pytz.sourceforge.net/>`__
@@ -190,6 +190,7 @@ Matplotlib requires a large number of dependencies:
190190
* `subprocess32 <https://pypi.python.org/pypi/subprocess32/>`_ (for Python
191191
2.7 only, on Linux and macOS only)
192192

193+
193194
Optionally, you can also install a number of packages to enable better user
194195
interface toolkits. See :ref:`what-is-a-backend` for more details on the
195196
optional Matplotlib backends and the capabilities they provide.

setupext.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1507,7 +1507,7 @@ def get_install_requires(self):
15071507
class Dateutil(SetupPackage):
15081508
name = "dateutil"
15091509

1510-
def __init__(self, version=None):
1510+
def __init__(self, version='>=2.0'):
15111511
self.version = version
15121512

15131513
def check(self):

0 commit comments

Comments
 (0)