Skip to content

Commit dc75f50

Browse files
committed
Allow ndarray versions < 0.18
Previously the version constraint was updated to ndarray <= 0.17 but the 0.17 release was yanked and this excludes 0.17.1 and later point releases. This updates the dependency specification to < 0.18 which will allow point releass (and which is closer to what was used before PyO3#516).
1 parent 4149c5d commit dc75f50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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.18"
3131
pyo3 = { version = "0.27.0", default-features = false, features = ["macros"] }
3232
rustc-hash = "2.0"
3333

0 commit comments

Comments
 (0)