Skip to content

Commit

Permalink
Remove unwanted change
Browse files Browse the repository at this point in the history
  • Loading branch information
lesteve committed Sep 15, 2022
1 parent e24ca3e commit d54d1be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions continuous_integration/install.sh
Expand Up @@ -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
}

Expand All @@ -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
Expand Down

0 comments on commit d54d1be

Please sign in to comment.