Skip to content

Commit 97ad03b

Browse files
authored
Merge pull request matplotlib#7483 from efiring/numpy_1.7
BLD: Bump minimum numpy version to 1.7.1.
2 parents 3f86b93 + 2267eaa commit 97ad03b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ language: python
4848
matrix:
4949
include:
5050
- python: 2.7
51-
env: MOCK=mock NUMPY=numpy==1.6
51+
env: MOCK=mock NUMPY=numpy==1.7.1
5252
- python: 3.4
5353
- python: 3.5
5454
env: PANDAS=pandas DELETE_FONT_CACHE=1

lib/matplotlib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
__version__ = str(get_versions()['version'])
136136
del get_versions
137137

138-
__version__numpy__ = str('1.6') # minimum required numpy version
138+
__version__numpy__ = str('1.7.1') # minimum required numpy version
139139

140140
__bibtex__ = """@Article{Hunter:2007,
141141
Author = {Hunter, J. D.},

setupext.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -898,10 +898,10 @@ def add_flags(self, ext):
898898
'NPY_1_7_API_VERSION'))
899899

900900
def get_setup_requires(self):
901-
return ['numpy>=1.6']
901+
return ['numpy>=1.7.1']
902902

903903
def get_install_requires(self):
904-
return ['numpy>=1.6']
904+
return ['numpy>=1.7.1']
905905

906906

907907
class LibAgg(SetupPackage):

0 commit comments

Comments
 (0)