Skip to content

BLD: fix conda install - try again #18841

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 2 commits into from
Dec 19, 2017
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
7 changes: 2 additions & 5 deletions ci/install_travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,14 @@ echo
echo "[update conda]"
conda config --set ssl_verify false || exit 1
conda config --set quiet true --set always_yes true --set changeps1 false || exit 1

conda install conda=4.3.30
# conda update -q conda
conda update -q conda

if [ "$CONDA_BUILD_TEST" ]; then
echo
echo "[installing conda-build]"
conda install conda-build
fi


echo
echo "[add channels]"
conda config --remove channels defaults || exit 1
Expand Down Expand Up @@ -125,7 +122,7 @@ if [ "$COVERAGE" ]; then
fi

echo
if [ -z "$PIP_BUILD_TEST" ] and [ -z "$CONDA_BUILD_TEST" ]; then
if [ -z "$PIP_BUILD_TEST" ] && [ -z "$CONDA_BUILD_TEST" ]; then

# build but don't install
echo "[build em]"
Expand Down