Skip to content

Commit

Permalink
Merge pull request #212 from PyO3/pyo3-0-15
Browse files Browse the repository at this point in the history
Upgrade pyo3 to 0.15
  • Loading branch information
messense committed Nov 4, 2021
2 parents a5303de + af362e2 commit 2cab9df
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ libc = "0.2"
num-complex = ">= 0.2, <= 0.4"
num-traits = "0.2"
ndarray = ">= 0.13, < 0.16"
pyo3 = { version = "0.14", default-features = false }
pyo3 = { version = "0.15", default-features = false }

[dev-dependencies]
pyo3 = { version = "0.14", features = ["auto-initialize"] }
pyo3 = { version = "0.15", features = ["auto-initialize"] }

[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 @@ -15,5 +15,5 @@ ndarray = "0.15"
ndarray-linalg = { git = "https://github.com/rust-ndarray/ndarray-linalg", features = ["openblas-static"] }

[dependencies.pyo3]
version = "0.14"
version = "0.15"
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 @@ -14,5 +14,5 @@ ndarray = "0.15.2"
num-complex = "0.4.0"

[dependencies.pyo3]
version = "0.14"
version = "0.15"
features = ["extension-module"]

0 comments on commit 2cab9df

Please sign in to comment.