Skip to content

Commit f5d8395

Browse files
committed
pyproject: add support for Python 3.14
1 parent 3a7daca commit f5d8395

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,22 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
os: ["ubuntu-22.04", "ubuntu-24.04"]
20+
os: ["ubuntu-22.04", "ubuntu-24.04", "ubuntu-26.04"]
2121
python: [
2222
"3.9",
2323
"3.10",
2424
"3.11",
2525
"3.12",
2626
"3.13",
27+
"3.14",
2728
]
2829
exclude:
2930
- os: "ubuntu-22.04"
3031
python: "3.13"
32+
- os: "ubuntu-22.04"
33+
python: "3.14"
34+
- os: "ubuntu-26.04"
35+
python: "3.9"
3136
runs-on: ${{ matrix.os }}
3237
concurrency:
3338
group: ${{ github.workflow }}-${{ matrix.python }}-${{ matrix.os }}-${{ github.ref }}

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
2424
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3.14",
2526
"Topic :: Software Development :: Libraries :: Python Modules",
2627
"Topic :: System :: Logging",
2728
"Topic :: System :: Systems Administration",

0 commit comments

Comments
 (0)