Skip to content

Commit 4288618

Browse files
committed
Remove the Python requirement from the CI workflow
Because it conflicted with the newer version now required, and it's not necessary since the Python version is set in the conda environment.yml.
1 parent 514c7eb commit 4288618

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.7] # TODO: Enable additional versions: 3.7
1615
gcc-version: [8] # TODO: Enable additional versions: 6, 7
1716
env:
1817
DISPLAY: ":99.0"
@@ -37,14 +36,13 @@ jobs:
3736
uses: actions/cache@v1
3837
with:
3938
path: ~/.cache/pip
40-
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/setup.py') }}
39+
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
4140

4241
- name: Setup Conda
4342
uses: conda-incubator/setup-miniconda@v2
4443
with:
4544
environment-file: environment.yml
4645
miniconda-version: "latest"
47-
python-version: ${{ matrix.python-version }}
4846
channel-priority: strict
4947
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
5048

0 commit comments

Comments
 (0)