Skip to content

Commit af2bede

Browse files
committed
bump minimum supported numpy version to 1.13.3
1 parent fd4e914 commit af2bede

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ matrix:
2626
- os: linux
2727
python: 3.5
2828
env:
29-
- NUMPYSPEC=numpy
29+
- NUMPYSPEC="numpy==1.13.3"
3030
- MATPLOTLIBSPEC=matplotlib
3131
- REFGUIDE_CHECK=1 # run doctests only
3232
- os: osx

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Installation
6666
------------
6767

6868
PyWavelets supports `Python`_ >=3.5, and is only dependent on `Numpy`_
69-
(supported versions are currently ``>= 1.9``). To pass all of the tests,
69+
(supported versions are currently ``>= 1.13.3``). To pass all of the tests,
7070
`Matplotlib`_ is also required.
7171

7272
There are binary wheels for Intel Linux, Windows and macOS / OSX on PyPi. If

doc/source/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ PyWavelets source code directory (containing ``setup.py``) and type::
3939
The requirements needed to build from source are:
4040

4141
- Python_ 2.7 or >=3.4
42-
- Numpy_ >= 1.9.1
42+
- Numpy_ >= 1.13.3
4343
- Cython_ >= 0.20.2 (if installing from git, not from a PyPI source release)
4444

4545
To run all the tests for PyWavelets, you will also need to install the

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,8 +414,8 @@ def setup_package():
414414
cmdclass={'develop': develop_build_clib},
415415
test_suite='nose.collector',
416416

417-
install_requires=["numpy>=1.9.1"],
418-
setup_requires=["numpy>=1.9.1"],
417+
install_requires=["numpy>=1.13.3"],
418+
setup_requires=["numpy>=1.13.3"],
419419
)
420420

421421
if "--force" in sys.argv:

0 commit comments

Comments
 (0)