Skip to content

Commit 1dcf318

Browse files
committed
.github: Update supported python versions
Python 3.8 is end-of-life, removed. Python 3.13 is released, added. Signed-off-by: Pieter De Gendt <[email protected]>
1 parent 5ab7a23 commit 1dcf318

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set up Python
1212
uses: actions/setup-python@v5
1313
with:
14-
python-version: "3.12"
14+
python-version: "3.13"
1515
- name: Install Python dependencies
1616
run: |
1717
pip3 install build

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
os: [ubuntu-latest, macos-latest, windows-latest]
14-
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
14+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1515
steps:
1616
- uses: actions/checkout@v4
1717
# This is enough to find many quoting issues

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ classifiers = [
1414
"Operating System :: MacOS :: MacOS X",
1515
"Operating System :: Microsoft :: Windows",
1616
]
17-
requires-python = ">=3.8"
17+
requires-python = ">=3.9"
1818
dependencies = [
1919
"colorama",
2020
"PyYAML>=5.1",

0 commit comments

Comments
 (0)