Skip to content

Commit

Permalink
More relaxed PyO3 requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
kngwyu committed Oct 11, 2020
1 parent f83b445 commit 6d05f1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ libc = "0.2"
num-complex = "0.2"
num-traits = "0.2"
ndarray = ">=0.13"
pyo3 = "0.12.0"
pyo3 = "0.12"

[features]
# In default setting, python version is automatically detected
Expand Down
2 changes: 1 addition & 1 deletion examples/linalg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ ndarray = ">= 0.13"
ndarray-linalg = { version = "0.12", features = ["openblas"] }

[dependencies.pyo3]
version = "0.12.0"
version = "0.12"
features = ["extension-module"]
2 changes: 1 addition & 1 deletion examples/simple-extension/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ numpy = { path = "../.." }
ndarray = ">= 0.12"

[dependencies.pyo3]
version = "0.12.0"
version = "0.12"
features = ["extension-module"]

0 comments on commit 6d05f1c

Please sign in to comment.