Skip to content

Commit 3a5d929

Browse files
committed
extend nalgebra support to 0.34
1 parent 8bfbb27 commit 3a5d929

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Changelog
2+
- v0.26.0
3+
- extend supported `nalgebra` version to `0.34` ([#503](https://github.com/PyO3/rust-numpy/pull/503))
4+
5+
- v0.25.0,
6+
- Bump PyO3 dependency to v0.25.0. ([#492](https://github.com/PyO3/rust-numpy/pull/492))
7+
28
- 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)
9+
- Bump PyO3 dependency to v0.24.0. ([#483](https://github.com/PyO3/rust-numpy/pull/483))
10+
- Support Python 3.13t "free-threaded" Python. ([#471](https://github.com/PyO3/rust-numpy/pull/471))
511

612
- v0.23.0
713
- 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)