Skip to content

Commit 1f867f4

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

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
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
3-
- Bump PyO3 dependency to v0.24.0. ([#483](https://github.com/PyO3/rust-numpy/pull/483)
4-
- Support Python 3.13t "free-threaded" Python. ([#471](https://github.com/PyO3/rust-numpy/pull/471)
7+
- Bump PyO3 dependency to v0.24.0. ([#483](https://github.com/PyO3/rust-numpy/pull/483))
8+
- Support Python 3.13t "free-threaded" Python. ([#471](https://github.com/PyO3/rust-numpy/pull/471))
59

610
- v0.23.0
711
- Drop support for PyPy 3.7 and 3.8. ([#470](https://github.com/PyO3/rust-numpy/pull/470))

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)