Skip to content

Commit

Permalink
Merge pull request dipy#1597 from skoudoro/minimum-version
Browse files Browse the repository at this point in the history
Upgrade nibabel minimum version
  • Loading branch information
arokem committed Jul 31, 2018
2 parents a0c6ad1 + 78510b8 commit ee0e244
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -35,7 +35,7 @@ matrix:
- python: 2.7
env:
# Check these values against requirements.txt and dipy/info.py
- DEPENDS="cython==0.25.1 numpy==1.7.1 scipy==0.9.0 nibabel==2.1.0 h5py==2.4.0"
- DEPENDS="cython==0.25.1 numpy==1.7.1 scipy==0.9.0 nibabel==2.3.0 h5py==2.4.0"
- python: 2.7
env:
- DEPENDS="$DEPENDS scikit_learn"
Expand Down
10 changes: 5 additions & 5 deletions dipy/info.py
Expand Up @@ -79,11 +79,11 @@

# versions for dependencies
# Check these versions against .travis.yml and requirements.txt
CYTHON_MIN_VERSION='0.25.1'
NUMPY_MIN_VERSION='1.7.1'
SCIPY_MIN_VERSION='0.9'
NIBABEL_MIN_VERSION='2.1.0'
H5PY_MIN_VERSION='2.4.0'
CYTHON_MIN_VERSION = '0.25.1'
NUMPY_MIN_VERSION = '1.7.1'
SCIPY_MIN_VERSION = '0.9'
NIBABEL_MIN_VERSION = '2.3.0'
H5PY_MIN_VERSION = '2.4.0'

# Main setup parameters
NAME = 'dipy'
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -2,5 +2,5 @@
cython>=0.25.1
numpy>=1.7.1
scipy>=0.9
nibabel>=2.1.0
nibabel>=2.3.0
h5py>=2.4.0

0 comments on commit ee0e244

Please sign in to comment.