Skip to content

Commit a837c63

Browse files
committed
Use inequality requirements for ndarray
1 parent c838ba0 commit a837c63

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "numpy"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Toshiki Teramura <[email protected]>"]
55

66
description = "Rust binding of NumPy C-API"
@@ -13,5 +13,5 @@ license-file = "LICENSE"
1313
cfg-if = "0.1.5"
1414
libc = "0.2"
1515
num-complex = "0.1"
16-
ndarray = "0.12"
16+
ndarray = ">= 0.11"
1717
pyo3 = "0.4.1"

example/extensions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
numpy = { path = "../.." }
12-
ndarray = "0.11"
12+
ndarray = ">= 0.11"
1313

1414
[dependencies.pyo3]
1515
version = "0.4.1"

0 commit comments

Comments
 (0)