Skip to content

Commit

Permalink
Disable pyamg on Travis until #1788 is closed
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanv committed Dec 14, 2015
1 parent 5b8fd77 commit a9b4e78
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion TODO.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Version 0.13
involves removing the function _mode_deprecations from skimage._shared.utils
as well as any uses of _mode_deprecations from restoration/_denoise.py,
_shared/interpolation.pyx, transform/_geometric.py, and transform/_warps.py

* Re-enable pyamg in Travis tests


Version 0.12
Expand Down
10 changes: 7 additions & 3 deletions tools/travis_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,13 @@ elif [[ $PY != 3.2* ]]; then
python ~/venv/bin/pyside_postinstall.py -install
fi

if [[ $PY == 2.* ]]; then
pip install --retries 3 -q pyamg
fi
## Disable pyamg until
## https://github.com/scikit-image/scikit-image/issues/1788
## is closed

#if [[ $PY == 2.* ]]; then
# pip install --retries 3 -q pyamg
#fi

# Show what's installed
pip list
Expand Down

0 comments on commit a9b4e78

Please sign in to comment.