Skip to content

Commit b1730bd

Browse files
repro in all os non freethreaded clear cache
1 parent 182630f commit b1730bd

2 files changed

Lines changed: 10 additions & 17 deletions

File tree

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

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,35 +25,28 @@ jobs:
2525
uses: actions/setup-python@v6
2626
with:
2727
python-version: |
28-
3.11
29-
3.12
3028
3.13
29+
3.14
3130
3231
- name: Check available python executables
3332
shell: bash
3433
run: |
3534
echo "Checking python executables"
3635
which python
3736
which python3
38-
which python3.11 || echo "python3.11 not found"
39-
which python3.12 || echo "python3.12 not found"
4037
which python3.13 || echo "python3.13 not found"
38+
which python3.14 || echo "python3.14 not found"
4139
command -v python || echo "python not found"
42-
command -v python3.11 || echo "python3.11 not found"
43-
command -v python3.12 || echo "python3.12 not found"
4440
command -v python3.13 || echo "python3.13 not found"
41+
command -v python3.14 || echo "python3.14 not found"
4542
echo "Python version:"
4643
python --version
4744
48-
- name: Try calling python3.11
49-
shell: bash
50-
run: |
51-
python3.11 --version || echo "python3.11 not callable"
52-
- name: Try calling python3.12
53-
shell: bash
54-
run: |
55-
python3.12 --version || echo "python3.12 not callable"
5645
- name: Try calling python3.13
5746
shell: bash
5847
run: |
5948
python3.13 --version || echo "python3.13 not callable"
49+
- name: Try calling python3.14
50+
shell: bash
51+
run: |
52+
python3.14 --version || echo "python3.14 not callable"

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name: Test Python Minor Versions freethread
33

44
on:
5-
push:
6-
branches:
7-
- test-973
5+
# push:
6+
# branches:
7+
# - test-973
88
workflow_dispatch:
99

1010
jobs:

0 commit comments

Comments
 (0)