Skip to content

Commit 45734dd

Browse files
authored
extend nalgebra support to 0.34 (#503)
1 parent ffcc0fb commit 45734dd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22
- v0.26.0
33
- bump MSRV to 1.74, matching PyO3 ([#504](https://github.com/PyO3/rust-numpy/pull/504))
4+
- extend supported `nalgebra` version to `0.34` ([#503](https://github.com/PyO3/rust-numpy/pull/503))
45

56
- v0.25.0,
67
- Bump PyO3 dependency to v0.25.0. ([#492](https://github.com/PyO3/rust-numpy/pull/492))

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)