Skip to content

Commit 15e91a9

Browse files
Bump pyo3 from 0.23.1 to 0.23.3 in /examples/linalg (#474)
* Bump pyo3 from 0.23.1 to 0.23.3 in /examples/linalg Bumps [pyo3](https://github.com/pyo3/pyo3) from 0.23.1 to 0.23.3. - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md) - [Commits](PyO3/pyo3@v0.23.1...v0.23.3) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * fix lint --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Icxolu <[email protected]>
1 parent 71ceb4c commit 15e91a9

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ num-complex = ">= 0.2, < 0.5"
2222
num-integer = "0.1"
2323
num-traits = "0.2"
2424
ndarray = ">= 0.15, < 0.17"
25-
pyo3 = { version = "0.23.0", default-features = false, features = ["macros"] }
25+
pyo3 = { version = "0.23.3", default-features = false, features = ["macros"] }
2626
rustc-hash = "2.0"
2727

2828
[dev-dependencies]
29-
pyo3 = { version = "0.23.0", default-features = false, features = ["auto-initialize"] }
29+
pyo3 = { version = "0.23.3", default-features = false, features = ["auto-initialize"] }
3030
nalgebra = { version = ">=0.30, <0.34", default-features = false, features = ["std"] }
3131

3232
[package.metadata.docs.rs]

examples/linalg/Cargo.lock

+13-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/linalg/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "rust_linalg"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
pyo3 = { version = "0.23.0", features = ["extension-module"] }
12+
pyo3 = { version = "0.23.3", features = ["extension-module"] }
1313
numpy = { path = "../.." }
1414
ndarray-linalg = { version = "0.14.1", features = ["openblas-system"] }
1515

src/array.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ pub type PyArray6<T> = PyArray<T, Ix6>;
117117
pub type PyArrayDyn<T> = PyArray<T, IxDyn>;
118118

119119
/// Returns a handle to NumPy's multiarray module.
120-
pub fn get_array_module<'py>(py: Python<'py>) -> PyResult<Bound<'_, PyModule>> {
120+
pub fn get_array_module<'py>(py: Python<'py>) -> PyResult<Bound<'py, PyModule>> {
121121
PyModule::import(py, npyffi::array::mod_name(py)?)
122122
}
123123

0 commit comments

Comments
 (0)