Skip to content

Commit eee9ce3

Browse files
committed
cicd: add python 3.14 to cicd test matrix
1 parent 2ea4408 commit eee9ce3

5 files changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
3.11
2323
3.12
2424
3.13
25+
3.14
2526
cache: 'pip'
2627
cache-dependency-path: |
2728
pyproject.toml

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
- Support Python 3.14.
1011
- **Breaking:** Simplify `Bundle` constructor to accept a single file path instead of a list. Change `ftl_filenames` parameter to `ftl_filename`.
1112
- Add support for Fluent message attributes via dot notation (e.g., `bundle.get_translation("message.attribute")`).
1213

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ This package supports:
1616
- Python 3.11
1717
- Python 3.12
1818
- Python 3.13
19+
- Python 3.14
1920

2021
## Installation
2122

noxfile.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
nox.param("3.11", id="python=3.11"),
2222
nox.param("3.12", id="python=3.12"),
2323
nox.param("3.13", id="python=3.13"),
24+
nox.param("3.14", id="python=3.14"),
2425
],
2526
)
2627
def tests(session: nox.Session) -> None:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
2020
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14",
2122
"Programming Language :: Rust",
2223
]
2324
# Do not manually edit the version, use `make version_{type}` instead.

0 commit comments

Comments
 (0)