Skip to content

Commit

Permalink
maint: bump pyo3 to v0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
ManonMarchand committed Oct 15, 2024
1 parent 0ba8b37 commit 5a60ea3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ mapproj = "0.3.0"
rayon = "1.10"

[dependencies.numpy]
version = "0.21"
version = "0.22"

[dependencies.pyo3]
version = "0.21"
version = "0.22"
features = ["extension-module"]

[dependencies.ndarray]
version = "0.15"
version = "0.15.6"
default-features = false # do not include the default features, and optionally
# cherry-pick individual features
features = ["rayon"]
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ use ndarray::{Array1, Zip};
use numpy::{IntoPyArray, PyArray1, PyArrayDyn, PyArrayMethods, PyReadonlyArrayDyn};
use pyo3::{
prelude::{pymodule, Bound, PyModule, PyResult, Python},
types::PyModuleMethods,
wrap_pyfunction,
};

Expand Down

0 comments on commit 5a60ea3

Please sign in to comment.