Skip to content

Commit e00143b

Browse files
committed
MNT: Bump minimum numpy version to 1.8
1 parent ac2618b commit e00143b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ matrix:
3333
# Absolute minimum dependencies
3434
- python: 2.7
3535
env:
36-
- DEPENDS="numpy==1.7.1"
36+
- DEPENDS="numpy==1.8"
3737
# Absolute minimum dependencies
3838
- python: 2.7
3939
env:
40-
- DEPENDS="numpy==1.7.1"
40+
- DEPENDS="numpy==1.8"
4141
- CHECK_TYPE="import"
4242
# Absolute minimum dependencies plus oldest MPL
4343
# Check these against:
@@ -46,11 +46,11 @@ matrix:
4646
# requirements.txt
4747
- python: 2.7
4848
env:
49-
- DEPENDS="numpy==1.7.1 matplotlib==1.3.1"
49+
- DEPENDS="numpy==1.8 matplotlib==1.3.1"
5050
# Minimum pydicom dependency
5151
- python: 2.7
5252
env:
53-
- DEPENDS="numpy==1.7.1 pydicom==0.9.9 pillow==2.6"
53+
- DEPENDS="numpy==1.8 pydicom==0.9.9 pillow==2.6"
5454
# pydicom master branch
5555
- python: 3.5
5656
env:

doc/source/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Requirements
8787
.travis.yml
8888
8989
* Python_ 2.7, or >= 3.4
90-
* NumPy_ 1.7.1 or greater
90+
* NumPy_ 1.8 or greater
9191
* Six_ 1.3 or greater
9292
* SciPy_ (optional, for full SPM-ANALYZE support)
9393
* PyDICOM_ 0.9.9 or greater (optional, for DICOM support)

nibabel/info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def cmp_pkg_version(version_str, pkg_version_str=__version__):
186186
# doc/source/installation.rst
187187
# requirements.txt
188188
# .travis.yml
189-
NUMPY_MIN_VERSION = '1.7.1'
189+
NUMPY_MIN_VERSION = '1.8'
190190
PYDICOM_MIN_VERSION = '0.9.9'
191191
SIX_MIN_VERSION = '1.3'
192192

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# doc/source/installation.rst
77

88
six>=1.3
9-
numpy>=1.7.1
9+
numpy>=1.8

0 commit comments

Comments
 (0)