Skip to content

Commit 86c61a6

Browse files
committed
extend ndarray support to 0.34
1 parent 8bfbb27 commit 86c61a6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
- v0.26.0
3+
- extend supported `ndarray` version to `0.34` ([#503](https://github.com/PyO3/rust-numpy/pull/503))
4+
- v0.25.0,
5+
- Bump PyO3 dependency to v0.25.0. ([#492](https://github.com/PyO3/rust-numpy/pull/492)
26
- v0.24.0
37
- Bump PyO3 dependency to v0.24.0. ([#483](https://github.com/PyO3/rust-numpy/pull/483)
48
- Support Python 3.13t "free-threaded" Python. ([#471](https://github.com/PyO3/rust-numpy/pull/471)

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ license = "BSD-2-Clause"
1717
[dependencies]
1818
half = { version = "2.0", default-features = false, optional = true }
1919
libc = "0.2"
20-
nalgebra = { version = ">=0.30, <0.34", default-features = false, optional = true }
20+
nalgebra = { version = ">=0.30, <0.35", default-features = false, optional = true }
2121
num-complex = ">= 0.2, < 0.5"
2222
num-integer = "0.1"
2323
num-traits = "0.2"
@@ -29,7 +29,7 @@ rustc-hash = "2.0"
2929
pyo3 = { version = "0.25", default-features = false, features = [
3030
"auto-initialize",
3131
] }
32-
nalgebra = { version = ">=0.30, <0.34", default-features = false, features = [
32+
nalgebra = { version = ">=0.30, <0.35", default-features = false, features = [
3333
"std",
3434
] }
3535

0 commit comments

Comments
 (0)