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

Skip to content

Commit 702cd01

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 b6c0c50 commit 702cd01

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ matrix:
6767
# pytest-cov>=2.3.1 due to https://github.com/pytest-dev/pytest-cov/issues/124.
6868
env:
6969
- CYCLER=cycler==0.10
70-
- DATEUTIL=python-dateutil==2.0
70+
- DATEUTIL=python-dateutil==2.1
7171
- MOCK=mock
7272
- NOSE=nose
7373
- 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
@@ -152,8 +152,8 @@ environment is set up properly::
152152

153153
.. note::
154154

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

158158
.. seealso::
159159

doc/devel/testing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ local FreeType build
2626

2727
The following software is required to run the tests:
2828

29-
- pytest_ (>=3.0.0)
30-
- mock_, when running Python versions < 3.3
29+
- pytest_ (>=3.1)
30+
- mock_, when running Python 2
3131
- Ghostscript_ (to render PDF files)
3232
- Inkscape_ (to render SVG files)
3333

setupext.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ def get_namespace_packages(self):
798798

799799
class Tests(OptionalPackage):
800800
name = "tests"
801-
pytest_min_version = '3.0.0'
801+
pytest_min_version = '3.1'
802802
default_config = False
803803

804804
def check(self):
@@ -1465,7 +1465,7 @@ def get_install_requires(self):
14651465
install_requires = [
14661466
"cycler>=0.10",
14671467
"pyparsing>=2.0.1,!=2.0.4,!=2.1.2,!=2.1.6",
1468-
"python-dateutil>=2.0",
1468+
"python-dateutil>=2.1",
14691469
"pytz",
14701470
"six>=1.10",
14711471
]

0 commit comments

Comments
 (0)