Skip to content

Commit 99af9a5

Browse files
committed
Run single runner items on 3.12, not 3.8
1 parent 918b65f commit 99af9a5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
108108
# Easier if eigen is installed with apt-get, but on at least one system, check that
109109
# it gets downloaded and installed properly if it isn't installed.
110-
if ${{ matrix.py != 3.8 }}; then sudo -H apt install -y libeigen3-dev; fi
110+
if ${{ matrix.py != 3.12 }}; then sudo -H apt install -y libeigen3-dev; fi
111111
112112
# Need this for the mpeg tests
113113
sudo -H apt install -y ffmpeg
@@ -189,7 +189,7 @@ jobs:
189189
FFTW_DIR=$FFTW_DIR pip install -vvv .
190190
191191
- name: Check download_cosmos only if it changed. (And only on 1 runner)
192-
if: matrix.py == 3.8 && github.base_ref != ''
192+
if: matrix.py == 3.12 && github.base_ref != ''
193193
run: |
194194
git status
195195
git --no-pager log --graph --pretty=oneline --abbrev-commit | head -50
@@ -206,9 +206,9 @@ jobs:
206206
# Less confusing to include it explicitly.
207207
208208
- name: Check shared library
209-
if: matrix.py == 3.8
209+
if: matrix.py == 3.12
210210
run: |
211-
# On a few systems (arbitrarily py3.8, where we also check mac and clang),
211+
# On a few systems (arbitrarily py3.12, where we also check mac and clang),
212212
# check the shared library creation and link.
213213
GALSIM_BUILD_SHARED=1 python setup.py build
214214

0 commit comments

Comments
 (0)