8000 Use stable numpy scipy release for [icc-build] and [arm64] on travis by ogrisel · Pull Request #19176 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

Use stable numpy scipy release for [icc-build] and [arm64] on travis #19176

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 2 additions & 17 deletions build_tools/travis/install_master.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,23 +50,8 @@ conda update --yes conda
conda create -n testenv --yes python=3.7

source activate testenv

if [[ $TRAVIS_CPU_ARCH == amd64 ]]; then
echo "Upgrading pip and setuptools."
pip install --upgrade pip setuptools
echo "Installing numpy, scipy and pandas master wheels."
dev_anaconda_url=https://pypi.anaconda.org/scipy-wheels-nightly/simple
pip install --pre --upgrade --timeout=60 --extra-index $dev_anaconda_url numpy scipy pandas
echo "Installing cython pre-release wheels."
pip install --pre cython
echo "Installing joblib master."
pip install https://github.com/joblib/joblib/archive/master.zip
echo "Installing pillow master."
pip install https://github.com/python-pillow/Pillow/archive/master.zip
else
conda install -y scipy numpy pandas cython
pip install joblib threadpoolctl
fi
conda install -y scipy numpy pandas cython
pip install joblib threadpoolctl

pip install $(get_dep pytest $PYTEST_VERSION) pytest-xdist

Expand Down
0