File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ - v0.12.2
4+ - Pin PyO3 minor versions to 0.12
5+ - Pin ndarray minor versions to 0.13
6+
37- v0.12.1
48 - Fix compile error in Rust 1.39
59
Original file line number Diff line number Diff line change 11[package ]
22name = " numpy"
3- version = " 0.12.1 "
3+ version = " 0.12.2 "
44authors = [
" Toshiki Teramura <[email protected] >" ,
" Yuji Kanagawa <[email protected] >" ]
55description = " Rust binding of NumPy C-API"
66documentation = " https://pyo3.github.io/rust-numpy/numpy"
@@ -14,8 +14,8 @@ cfg-if = "0.1"
1414libc = " 0.2"
1515num-complex = " 0.2"
1616num-traits = " 0.2"
17- ndarray = " >= 0.13"
18- pyo3 = " >= 0.12"
17+ ndarray = " 0.13"
18+ pyo3 = " 0.12"
1919
2020[features ]
2121# In default setting, python version is automatically detected
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ crate-type = ["cdylib"]
1010
1111[dependencies ]
1212numpy = { path = " ../.." }
13- ndarray = " >= 0.13"
13+ ndarray = " 0.13"
1414ndarray-linalg = { version = " 0.12" , features = [" openblas" ] }
1515
1616[dependencies .pyo3 ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ crate-type = ["cdylib"]
1010
1111[dependencies ]
1212numpy = { path = " ../.." }
13- ndarray = " >= 0.12 "
13+ ndarray = " 0.13 "
1414
1515[dependencies .pyo3 ]
1616version = " 0.12"
You can’t perform that action at this time.
0 commit comments