Skip to content

Commit 17f172f

Browse files
committed
ci/tests(chore[python]): add Python 3.14 to CI workflows
why: Ensure CI and packaging cover the latest CPython release. what: - replace Python 3.13 with 3.14 in build, release, and docs GitHub workflows - add Python 3.14 trove classifier for packaging metadata
1 parent 1c8986b commit 17f172f

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ['3.13']
13+
python-version: ['3.14']
1414
steps:
1515
- uses: actions/checkout@v4
1616

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ['3.9', '3.13']
12+
python-version: ['3.9', '3.14']
1313
steps:
1414
- uses: actions/checkout@v4
1515

@@ -56,7 +56,7 @@ jobs:
5656

5757
strategy:
5858
matrix:
59-
python-version: ['3.13']
59+
python-version: ['3.14']
6060

6161
steps:
6262
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
2323
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
2425
"Topic :: Utilities",
2526
"Topic :: System :: Shells",
2627
]

0 commit comments

Comments
 (0)