Skip to content

Commit a4bda85

Browse files
committed
MAINT: update numpy dependency to 1.7
To accomodate `astype(... copy=)` in previous commit.
1 parent ea84c9d commit a4bda85

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ matrix:
3333
# Absolute minimum dependencies
3434
- python: 2.7
3535
env:
36-
- DEPENDS="numpy==1.6.0" PYDICOM=0
36+
- DEPENDS="numpy==1.7.1" PYDICOM=0
3737
# Absolute minimum dependencies plus oldest MPL
3838
# Check these against:
3939
# nibabel/info.py
4040
# doc/source/installation.rst
4141
# requirements.txt
4242
- python: 2.7
4343
env:
44-
- DEPENDS="numpy==1.6.0 matplotlib==1.3.1" PYDICOM=0
44+
- DEPENDS="numpy==1.7.1 matplotlib==1.3.1" PYDICOM=0
4545
# Minimum pydicom dependency
4646
- python: 2.7
4747
env:
48-
- DEPENDS="numpy==1.6.0 pydicom==0.9.7 pillow==2.6"
48+
- DEPENDS="numpy==1.7.1 pydicom==0.9.7 pillow==2.6"
4949
# test against numpy 1.7
5050
- python: 2.7
5151
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.6 or greater
90+
* NumPy_ 1.7 or greater
9191
* Six_ 1.3 or greater
9292
* SciPy_ (optional, for full SPM-ANALYZE support)
9393
* PyDICOM_ 0.9.7 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.6.0'
189+
NUMPY_MIN_VERSION = '1.7.1'
190190
PYDICOM_MIN_VERSION = '0.9.7'
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.6
9+
numpy>=1.7

0 commit comments

Comments
 (0)