Skip to content

Commit 7952769

Browse files
committed
Fix pyo3 versioning requirements
1 parent 382c003 commit 7952769

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ num-complex = "0.4.6"
3838
numpy = ">= 0.24.0"
3939
prettyplease = "0.2.32"
4040
proc-macro2 = "1.0.95"
41-
pyo3 = ">= 0.24.0, < 0.25.0" # Keep 0.24.x for testing
41+
pyo3 = ">= 0.24.0"
4242
quote = "1.0.40"
4343
serde = { version = "1.0.219", features = ["derive"] }
4444
syn = "2.0.101"

examples/pure_abi3/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ crate-type = ["cdylib", "rlib"]
1010
[dependencies]
1111
ahash = "0.8.11"
1212
env_logger = "0.11.8"
13-
pyo3 = { version = ">= 0.24.0", features = ["abi3-py39"] }
13+
# Use 0.24 since the issue #184 is automatically fixed in 0.25
14+
pyo3 = { version = "0.24.0", features = ["abi3-py39"] }
1415
pyo3-stub-gen = { path = "../../pyo3-stub-gen" }
1516

1617
[[bin]]

0 commit comments

Comments
 (0)