Skip to content

Commit ff53e67

Browse files
committed
✨ feat: support python 3.14
1 parent 5528430 commit ff53e67

File tree

3 files changed

+351
-350
lines changed

3 files changed

+351
-350
lines changed

packages/biliass/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 :: Python :: Implementation :: CPython",
2223
]
2324
dependencies = []

packages/biliass/rust/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ name = "biliass_core"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
pyo3 = { version = "0.25.0", features = ["abi3-py310"] }
13-
bytes = "1.10.0"
14-
prost = "0.14.0"
15-
thiserror = "2.0.11"
12+
pyo3 = { version = "0.25.1", features = ["abi3-py310"] }
13+
bytes = "1.10.1"
14+
prost = "0.14.1"
15+
thiserror = "2.0.12"
1616
quick-xml = "0.38.0"
17-
cached = "0.55.0"
18-
serde = "1.0.218"
19-
serde_json = "1.0.139"
17+
cached = "0.55.1"
18+
serde = "1.0.219"
19+
serde_json = "1.0.140"
2020
regex = "1.11.1"
2121
tracing = "0.1.41"
2222
tracing-subscriber = "0.3.19"
2323
rayon = "1.10.0"
2424

2525
[build-dependencies]
26-
prost-build = "0.14.0"
26+
prost-build = "0.14.1"
2727
protox = "0.9.0"
2828

2929
[profile.release]

0 commit comments

Comments
 (0)