Skip to content

Commit 06276d8

Browse files
authored
add python version 3.11.5
1 parent 10548b0 commit 06276d8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/testslurm.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
strategy:
1212
matrix:
13-
python-version: [3.8.16, 3.9.16, 3.10.9, 3.11.1]
13+
python-version: [3.8.16, 3.9.16, 3.10.9, 3.11.1, 3.11.5]
1414
fail-fast: false
1515
runs-on: ubuntu-latest
1616
env:
@@ -39,6 +39,9 @@ jobs:
3939
docker exec slurm bash -c "echo $NO_ET"
4040
docker exec slurm bash -c "ls -la && echo list top level dir"
4141
docker exec slurm bash -c "ls -la /pydra && echo list pydra dir"
42+
if [[ "${{ matrix.python-version }}" == "3.11.5" ]]; then
43+
docker exec slurm bash -c "CONFIGURE_OPTS=\"-with-openssl=/opt/openssl\" pyenv install -v 3.11.5"
44+
fi
4245
docker exec slurm bash -c "pyenv global ${{ matrix.python-version }}"
4346
docker exec slurm bash -c "pip install --upgrade pip && pip install -e /pydra[test] && python -c 'import pydra; print(pydra.__version__)'"
4447
- name: Run pytest

0 commit comments

Comments
 (0)