Skip to content

Commit 8eae47a

Browse files
committed
Bump minimum numpy version to 1.7.1.
This matches the version required by SciPy 0.18.0, and provided by RHEL 7.
1 parent 3f86b93 commit 8eae47a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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)