Skip to content

Commit

Permalink
Remove explicit dependancy on python3
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Jan 26, 2022
1 parent 632c1c5 commit 55c281a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
sudo apt-get update
python setup.py sdist
last_dist=$(ls -t dist/ConfigSpace-*.tar.gz | head -n 1)
pip install $last_dist[test]
python -m pip install $last_dist[test]
- name: Store git status
id: status-before
Expand All @@ -111,7 +111,7 @@ jobs:
if [[ ${{ matrix.kind }} == 'conda' ]]; then
PYTHON=$CONDA/envs/testenv/bin/python3
else
PYTHON=$(which python3)
PYTHON=$(which python)
fi
if [ ${{ matrix.code-cov }} ]; then
Expand Down

0 comments on commit 55c281a

Please sign in to comment.