Skip to content

Commit 3bbf190

Browse files
repro in all os
1 parent d9acf97 commit 3bbf190

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/test-1079-linux.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
uses: actions/setup-python@v6
2222
with:
2323
python-version: |
24-
3.9
2524
3.10
25+
3.11
2626
3.13
2727
2828
- name: Check available python executables
@@ -31,24 +31,24 @@ jobs:
3131
echo "Checking python executables"
3232
which python
3333
which python3
34-
which python3.9 || echo "python3.9 not found"
3534
which python3.10 || echo "python3.10 not found"
35+
which python3.11 || echo "python3.11 not found"
3636
which python3.13 || echo "python3.13 not found"
3737
command -v python || echo "python not found"
38-
command -v python3.9 || echo "python3.9 not found"
3938
command -v python3.10 || echo "python3.10 not found"
39+
command -v python3.11 || echo "python3.11 not found"
4040
command -v python3.13 || echo "python3.13 not found"
4141
echo "Python version:"
4242
python --version
4343
44-
- name: Try calling python3.9
45-
shell: bash
46-
run: |
47-
python3.9 --version || echo "python3.9 not callable"
4844
- name: Try calling python3.10
4945
shell: bash
5046
run: |
5147
python3.10 --version || echo "python3.10 not callable"
48+
- name: Try calling python3.11
49+
shell: bash
50+
run: |
51+
python3.11 --version || echo "python3.11 not callable"
5252
- name: Try calling python3.13
5353
shell: bash
5454
run: |

0 commit comments

Comments
 (0)