Skip to content

Commit d7283f3

Browse files
extended ndarray to 0.17 (#516)
1 parent d1783af commit d7283f3

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
- v0.27.1
3+
- Bump ndarray dependency to v0.17. ([#516](https://github.com/PyO3/rust-numpy/pull/516))
4+
25
- v0.27.0
36
- Bump PyO3 dependency to v0.27.0. ([#515](https://github.com/PyO3/rust-numpy/pull/515))
47

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ nalgebra = { version = ">=0.30, <0.35", default-features = false, optional = tru
2727
num-complex = ">= 0.2, < 0.5"
2828
num-integer = "0.1"
2929
num-traits = "0.2"
30-
ndarray = ">= 0.15, < 0.17"
30+
ndarray = ">= 0.15, <=0.17"
3131
pyo3 = { version = "0.27.0", default-features = false, features = ["macros"] }
3232
rustc-hash = "2.0"
3333

examples/parallel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
1111
[dependencies]
1212
pyo3 = { version = "0.27.0", features = ["extension-module", "multiple-pymethods"] }
1313
numpy = { path = "../.." }
14-
ndarray = { version = "0.16", features = ["rayon", "blas"] }
14+
ndarray = { version = "0.17", features = ["rayon", "blas"] }
1515
blas-src = { version = "0.8", features = ["openblas"] }
1616
openblas-src = { version = "0.10", features = ["cblas", "system"] }
1717

0 commit comments

Comments
 (0)