Skip to content

Commit 087a508

Browse files
update GitHub workflows to Python 3.14, drop support for 3.8 and 3.9
* Python 3.9 reached end of life in 2025 Signed-off-by: Armin Tänzer <armin.taenzer@tngtech.com>
1 parent 3fd123c commit 087a508

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/check_codestyle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: [ ubuntu-latest, macos-latest, windows-latest ]
23-
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
23+
python-version: [ "3.14" ]
2424

2525
steps:
2626
- uses: actions/checkout@v3

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Python
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: '3.11'
22+
python-version: '3.14'
2323
- name: Install dependencies
2424
run: |
2525
sudo apt-get install graphviz-dev

.github/workflows/install_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ ubuntu-latest, macos-latest, windows-latest ]
20-
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
20+
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
2121

2222
steps:
2323
- uses: actions/checkout@v3

.github/workflows/integration_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v3
16-
- name: Set up Python 3.11
16+
- name: Set up Python 3.14
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: 3.11
19+
python-version: 3.14
2020
- name: Installation
2121
run: |
2222
python -m pip install --upgrade pip

.github/workflows/prepare_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: '3.8'
22+
python-version: '3.14'
2323
- name: Set up dependencies
2424
run: |
2525
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)