Skip to content

Commit 68ed4c9

Browse files
authored
Merge pull request #22 from kraken-tech/python-3.13
Add support for Python 3.13
2 parents 8119d65 + 91f8f78 commit 68ed4c9

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ jobs:
1919
uses: actions/setup-python@v5
2020
with:
2121
python-version: |
22-
3.12
2322
3.11
23+
3.12
24+
3.13
2425
cache: 'pip'
2526
cache-dependency-path: |
2627
pyproject.toml

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "rustfluent"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
pyo3 = { version = "0.22.5", features = ["chrono"] }
12+
pyo3 = { version = "0.23.4", features = ["chrono"] }
1313
fluent = "0.16.1"
1414
unic-langid = "0.9.5"
1515
fluent-bundle = "0.15.3"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ This package supports:
1515

1616
- Python 3.11
1717
- Python 3.12
18+
- Python 3.13
1819

1920
## Installation
2021

noxfile.py

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

pyproject.toml

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

0 commit comments

Comments
 (0)