diff --git a/.travis.yml b/.travis.yml index 696744ab59dc..0354378dfc7a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,7 +48,7 @@ language: python matrix: include: - python: 2.7 - env: MOCK=mock NUMPY=numpy==1.6 + env: MOCK=mock NUMPY=numpy==1.7.1 - python: 3.4 - python: 3.5 env: PANDAS=pandas DELETE_FONT_CACHE=1 diff --git a/lib/matplotlib/__init__.py b/lib/matplotlib/__init__.py index 0e4450ad1f2c..7c792bd0c160 100644 --- a/lib/matplotlib/__init__.py +++ b/lib/matplotlib/__init__.py @@ -135,7 +135,7 @@ __version__ = str(get_versions()['version']) del get_versions -__version__numpy__ = str('1.6') # minimum required numpy version +__version__numpy__ = str('1.7.1') # minimum required numpy version __bibtex__ = """@Article{Hunter:2007, Author = {Hunter, J. D.}, diff --git a/setupext.py b/setupext.py index 9f5e500fa875..f77e24555d40 100644 --- a/setupext.py +++ b/setupext.py @@ -898,10 +898,10 @@ def add_flags(self, ext): 'NPY_1_7_API_VERSION')) def get_setup_requires(self): - return ['numpy>=1.6'] + return ['numpy>=1.7.1'] def get_install_requires(self): - return ['numpy>=1.6'] + return ['numpy>=1.7.1'] class LibAgg(SetupPackage):