Skip to content

Commit

Permalink
Merge pull request #202 from HERA-Team/sklearn_version
Browse files Browse the repository at this point in the history
Use older version of scikit-learn for Python 2.7 tests
  • Loading branch information
acliu authored May 10, 2019
2 parents 1aec81b + 8e62ec8 commit 9fe0576
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ install:
- conda install -c conda-forge healpy aipy
- pip install coveralls
- pip install h5py
- pip install scikit-learn
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
pip install scikit-learn==0.20.3;
else
pip install scikit-learn;
fi
- pip install git+https://github.com/HERA-Team/pyuvdata.git$PYUVDATA_VERSION
- pip install git+https://github.com/HERA-Team/omnical.git
- pip install git+https://github.com/HERA-Team/linsolve.git
Expand Down

0 comments on commit 9fe0576

Please sign in to comment.