Skip to content

Commit

Permalink
Restrict scipy version to <1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hanslovsky committed Jun 3, 2019
1 parent 59383aa commit d8615db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Dependencies are specified as `install_requires` in `setup.py`. Also needs `tens
conda create -n eqip -c conda-forge -c cpape python=3.6 tensorflow-gpu=1.3
conda activate eqip
conda install -c conda-forge -c cpape pip z5py
conda install -c conda-forge scikit-image numpy scipy
conda install -c conda-forge scikit-image numpy 'scipy>=1.1.0,<1.3.0'
conda install -c conda-forge h5py requests urllib3 idna
conda install -c conda-forge cython
conda install -c conda-forge pymongo
Expand Down
2 changes: 1 addition & 1 deletion eqip/conda.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
-y \
python=3.6
conda activate %(name)s
pip install h5py scikit-image numpy scipy requests urllib3
pip install h5py scikit-image numpy 'scipy>=1.1.0,<1.3.0' requests urllib3
conda install -c conda-forge -y z5py gxx_linux-64 cython tensorflow-gpu=1.3
pip install git+https://github.com/hanslovsky/eqip@%(eqip_revision)s
'''
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
'pip>=18.1',
'scikit-image>=0.14.1',
'numpy>=1.15.4',
'scipy>=1.1.0',
'scipy>=1.1.0, <1.3.0',
'malis-pre-release',
'gunpowder @ git+https://github.com/funkey/gunpowder@721718b6569b47a2f5d5d6633c76c85f779e25c7',
'daisy @ git+https://github.com/funkelab/daisy@41130e58582ae05d01d26261786de0cbafaa6482',
Expand Down

0 comments on commit d8615db

Please sign in to comment.