From d54d1be4c2e330de9ef74c60ac0d6fe2e3004656 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Est=C3=A8ve?= Date: Thu, 15 Sep 2022 16:28:56 +0200 Subject: [PATCH] Remove unwanted change --- continuous_integration/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/continuous_integration/install.sh b/continuous_integration/install.sh index ee765a0c1..41e21e77c 100755 --- a/continuous_integration/install.sh +++ b/continuous_integration/install.sh @@ -13,7 +13,7 @@ set -e create_new_conda_env() { conda update --yes conda TO_INSTALL="python=$PYTHON_VERSION pip pytest $EXTRA_CONDA_PACKAGES" - conda create -n testenv --yes $TO_INSTALL + conda create -n testenv --yes -c conda-forge $TO_INSTALL source activate testenv } @@ -23,7 +23,7 @@ create_new_pypy3_env() { tar xvf $PYPY_FOLDER.tar.bz2 $PYPY_FOLDER/bin/pypy3 -m venv pypy3 source pypy3/bin/activate - pip install -U pip pytest + pip install -U pip 'pytest' } if [[ "$PYTHON_VERSION" == "pypy3" ]]; then