Skip to content

Commit d9859e4

Browse files
committed
Fix workflow pyenv matrix Python 3.9 and 3.11
There's no 3.9.3, only 3.9.2, which is also the correct Debian version. 3.11.1 is available in pyenv 2.3.8, but 2.3.7 is currently in use by the Github action. So 3.11 is used, which uses the latest patch version
1 parent bbc75ff commit d9859e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: .github/workflows/run_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
python:
1616
- "3.5.3" # Debian Stretch
1717
- "3.7.3" # Debian Buster
18-
- "3.9.3" # Debian Bullseye
19-
- "3.11.1" # Debian Bookworm
18+
- "3.9.2" # Debian Bullseye
19+
- "3.11" # Debian Bookworm uses 3.11.1, but it's in a newer pyenv release
2020
steps:
2121
- uses: actions/checkout@v3
2222

0 commit comments

Comments
 (0)