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

Skip to content

Commit fc413b3

Browse files
authored
Merge pull request #15645 from anntzer/numpy112
Bump minimal numpy version to 1.12.
2 parents c12480d + fe59d81 commit fc413b3

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

INSTALL.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Dependencies
108108
Matplotlib requires the following dependencies:
109109

110110
* `Python <https://www.python.org/downloads/>`_ (>= 3.6)
111-
* `NumPy <http://www.numpy.org>`_ (>= 1.11)
111+
* `NumPy <http://www.numpy.org>`_ (>= 1.12)
112112
* `setuptools <https://setuptools.readthedocs.io/en/latest/>`_
113113
* `cycler <http://matplotlib.org/cycler/>`_ (>= 0.10.0)
114114
* `dateutil <https://pypi.org/project/python-dateutil>`_ (>= 2.1)

doc/api/next_api_changes/development.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Development changes
22
-------------------
33

4+
Matplotlib now requires numpy>=1.12
5+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6+
47
Matplotlib now uses Pillow to save and read pngs
58
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
69

doc/devel/min_dep_policy.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ specification of the dependencies.
7777
========== ======== ======
7878
Matplotlib Python NumPy
7979
========== ======== ======
80-
3.3 3.6 1.11.0
80+
3.3 3.6 1.12.0
8181
3.2 3.6 1.11.0
8282
`3.1`_ 3.6 1.11.0
8383
`3.0`_ 3.5 1.10.0

lib/matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def _check_versions():
194194
("cycler", "0.10"),
195195
("dateutil", "2.1"),
196196
("kiwisolver", "1.0.1"),
197-
("numpy", "1.11"),
197+
("numpy", "1.12"),
198198
("pyparsing", "2.0.1"),
199199
]:
200200
module = importlib.import_module(modname)

requirements/testing/travis36minver.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
cycler==0.10
44
python-dateutil==2.1
5-
numpy==1.11.0
5+
numpy==1.12.0
66
pyparsing==2.0.1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,12 +255,12 @@ def run(self):
255255

256256
python_requires='>={}'.format('.'.join(str(n) for n in min_version)),
257257
setup_requires=[
258-
"numpy>=1.11",
258+
"numpy>=1.12",
259259
],
260260
install_requires=[
261261
"cycler>=0.10",
262262
"kiwisolver>=1.0.1",
263-
"numpy>=1.11",
263+
"numpy>=1.12",
264264
"pillow>=6.2.0",
265265
"pyparsing>=2.0.1,!=2.0.4,!=2.1.2,!=2.1.6",
266266
"python-dateutil>=2.1",

0 commit comments

Comments
 (0)