Skip to content

Commit bb983d0

Browse files
committed
ci: workflows: remove unsupported Python version from test matrices
Python 3.10 and 3.11 are no longer supported so drop them from the GitHub Actions test matrices. Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
1 parent eff39fb commit bb983d0

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/devicetree_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ${{ matrix.os }}
3030
strategy:
3131
matrix:
32-
python-version: ['3.10', '3.11', '3.12', '3.13']
32+
python-version: ['3.12', '3.13']
3333
os: [ubuntu-22.04, macos-14, windows-2022]
3434
steps:
3535
- name: checkout

.github/workflows/pylib_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ${{ matrix.os }}
2929
strategy:
3030
matrix:
31-
python-version: ['3.10', '3.11', '3.12', '3.13']
31+
python-version: ['3.12', '3.13']
3232
os: [ubuntu-24.04]
3333
steps:
3434
- name: checkout

.github/workflows/scripts_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ${{ matrix.os }}
2929
strategy:
3030
matrix:
31-
python-version: ['3.10', '3.11', '3.12', '3.13']
31+
python-version: ['3.12', '3.13']
3232
os: [ubuntu-24.04]
3333
steps:
3434
- name: checkout

.github/workflows/twister_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ${{ matrix.os }}
3636
strategy:
3737
matrix:
38-
python-version: ['3.10', '3.11', '3.12', '3.13']
38+
python-version: ['3.12', '3.13']
3939
os: [ubuntu-24.04]
4040
steps:
4141
- name: checkout

.github/workflows/twister_tests_blackbox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: Twister Black Box Tests
2727
strategy:
2828
matrix:
29-
python-version: ['3.10', '3.11', '3.12', '3.13']
29+
python-version: ['3.12', '3.13']
3030
os: [ubuntu-24.04, macos-14, windows-2022]
3131
fail-fast: false
3232
runs-on: ${{ matrix.os }}

.github/workflows/west_cmds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
matrix:
35-
python-version: ['3.10', '3.11', '3.12', '3.13']
35+
python-version: ['3.12', '3.13']
3636
os: [ubuntu-22.04, macos-14, windows-2022]
3737
steps:
3838
- name: checkout

0 commit comments

Comments
 (0)