Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 403dd7b

Browse files
committed
Bump to pytest>=3.1, dateutil>⩦2.1.
dateutil==2.0 is listed on pypi but has no sdist or wheel available.
1 parent 6469d6e commit 403dd7b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ matrix:
6060
# pytest-cov>=2.3.1 due to https://github.com/pytest-dev/pytest-cov/issues/124.
6161
env:
6262
- CYCLER=cycler==0.10
63-
- DATEUTIL=python-dateutil==2.0
63+
- DATEUTIL=python-dateutil==2.1
6464
- MOCK=mock
6565
- NOSE=nose
6666
- NUMPY=numpy==1.7.1

INSTALL.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Matplotlib requires a large number of dependencies:
176176
* `Python <https://www.python.org/downloads/>`_ (>= 2.7 or >= 3.4)
177177
* `NumPy <http://www.numpy.org>`_ (>= |minimum_numpy_version|)
178178
* `setuptools <https://setuptools.readthedocs.io/en/latest/>`__
179-
* `dateutil <https://pypi.python.org/pypi/python-dateutil>`_ (>= 2.0)
179+
* `dateutil <https://pypi.python.org/pypi/python-dateutil>`_ (>= 2.1)
180180
* `pyparsing <https://pyparsing.wikispaces.com/>`__
181181
* `libpng <http://www.libpng.org>`__ (>= 1.2)
182182
* `pytz <http://pytz.sourceforge.net/>`__

doc/devel/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ environment is set up properly::
139139

140140
.. note::
141141

142-
**Additional dependencies for testing**: pytest_ (version 3.0 or later),
143-
mock_ (if python < 3.3), Ghostscript_, Inkscape_
142+
**Additional dependencies for testing**: pytest_ (version 3.1 or later),
143+
mock_ (if Python 2), Ghostscript_, Inkscape_
144144

145145
.. seealso::
146146

doc/devel/testing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Requirements
2222

2323
The following software is required to run the tests:
2424

25-
- pytest_ (>=3.0.0)
26-
- mock_, when running Python versions < 3.3
25+
- pytest_ (>=3.1)
26+
- mock_, when running Python 2
2727
- Ghostscript_ (to render PDF files)
2828
- Inkscape_ (to render SVG files)
2929

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1506,7 +1506,7 @@ def get_install_requires(self):
15061506
class Dateutil(SetupPackage):
15071507
name = "dateutil"
15081508

1509-
def __init__(self, version='>=2.0'):
1509+
def __init__(self, version='>=2.1'):
15101510
self.version = version
15111511

15121512
def check(self):

0 commit comments

Comments
 (0)