From 3b9ad92ed60db70e8083e238cc59720207f7444c Mon Sep 17 00:00:00 2001 From: "Thomas J. Fan" Date: Sun, 12 Jul 2020 15:45:20 -0400 Subject: [PATCH] CI Build with cython prerelease (#17908) --- build_tools/azure/install.sh | 4 +--- build_tools/travis/install.sh | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/build_tools/azure/install.sh b/build_tools/azure/install.sh index b20811f510174..0c900b7d11db7 100755 --- a/build_tools/azure/install.sh +++ b/build_tools/azure/install.sh @@ -87,9 +87,7 @@ elif [[ "$DISTRIB" == "conda-pip-scipy-dev" ]]; then echo "Installing numpy and scipy 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 - # Cython nightly build should be still fetched from the Rackspace container - dev_rackspace_url=https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com - pip install --pre --upgrade --timeout=60 -f $dev_rackspace_url cython + pip install --pre cython echo "Installing joblib master" pip install https://github.com/joblib/joblib/archive/master.zip echo "Installing pillow master" diff --git a/build_tools/travis/install.sh b/build_tools/travis/install.sh index 4062031ebf09d..922919c3abfa0 100755 --- a/build_tools/travis/install.sh +++ b/build_tools/travis/install.sh @@ -51,9 +51,7 @@ pip install --upgrade pip setuptools echo "Installing numpy and scipy 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 -# Cython nightly build should be still fetched from the Rackspace container -dev_rackspace_url=https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com -pip install --pre --upgrade --timeout=60 -f $dev_rackspace_url cython +pip install --pre cython echo "Installing joblib master" pip install https://github.com/joblib/joblib/archive/master.zip echo "Installing pillow master"