Skip to content

Commit

Permalink
Fix bug in travis configuration (#275)
Browse files Browse the repository at this point in the history
The `>` was being interpreted as output redirection to the file `=0.45.1`, which was not at all reasonable.

Fixes gh-274
  • Loading branch information
eric-wieser committed Mar 10, 2020
1 parent c4f93f1 commit 2d541c3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@ x-clifford-templates:
PYTHON_VERSION="$TRAVIS_PYTHON_VERSION" CONDA_INSTALLER_OS="${TRAVIS_OS_NAME:-linux}" source travis_install_conda.sh \
numpy \
scipy \
numba \
pip \
IPython \
h5py;
conda install -c conda-forge sparse;
conda install -c numba numba>=0.45.1;
conda install -c numba "numba>=0.45.1";
else
pip install IPython;
fi
Expand Down

0 comments on commit 2d541c3

Please sign in to comment.