Skip to content

Commit 7a0ddeb

Browse files
authored
Support Python 3.14 (#329)
2 parents 8e7926f + 4a2abda commit 7a0ddeb

4 files changed

Lines changed: 6 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

@@ -52,7 +52,7 @@ jobs:
5252

5353
strategy:
5454
matrix:
55-
python-version: ['3.13']
55+
python-version: ['3.14']
5656

5757
steps:
5858
- uses: actions/checkout@v4

CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ You can test the unpublished version of cihai-cli before its released, see
3535

3636
### Development
3737

38+
- Add Python 3.14 to test matrix (#329)
39+
3840
#### chore: Implement PEP 563 deferred annotation resolution (#324)
3941

4042
- Add `from __future__ import annotations` to defer annotation resolution and reduce unnecessary runtime computations during type checking.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.11",
2020
"Programming Language :: Python :: 3.12",
2121
"Programming Language :: Python :: 3.13",
22+
"Programming Language :: Python :: 3.14",
2223
"Programming Language :: Python :: Implementation :: PyPy",
2324
"Topic :: Software Development :: Internationalization",
2425
"Topic :: Software Development :: Localization",

0 commit comments

Comments
 (0)