File tree 7 files changed +13
-10
lines changed
7 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ - v0.7.0
3
+ - Update PyO3 to 0.8
4
+
2
5
- v0.6.0
3
6
- Update PyO3 to 0.7
4
7
- Drop Python2 support
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " numpy"
3
- version = " 0.6 .0"
3
+ version = " 0.7 .0"
4
4
authors = [
" Toshiki Teramura <[email protected] >" ,
" Yuji Kanagawa <[email protected] >" ]
5
5
description = " Rust binding of NumPy C-API"
6
6
documentation = " https://rust-numpy.github.io/rust-numpy/numpy"
@@ -15,7 +15,7 @@ libc = "0.2"
15
15
num-complex = " 0.2"
16
16
num-traits = " 0.2"
17
17
ndarray = " 0.12"
18
- pyo3 = { git = " https://github.com/PyO3/pyo3 " }
18
+ pyo3 = " 0.8 "
19
19
20
20
[features ]
21
21
# In default setting, python version is automatically detected
Original file line number Diff line number Diff line change @@ -56,8 +56,8 @@ using [setuptools-rust](https://github.com/PyO3/setuptools-rust).
56
56
name = " numpy-test"
57
57
58
58
[dependencies ]
59
- pyo3 = " 0.7 "
60
- numpy = " 0.6 .0"
59
+ pyo3 = " 0.8 "
60
+ numpy = " 0.7 .0"
61
61
```
62
62
63
63
``` rust
@@ -98,11 +98,11 @@ name = "rust_ext"
98
98
crate-type = [" cdylib" ]
99
99
100
100
[dependencies ]
101
- numpy = " 0.6 .0"
101
+ numpy = " 0.7 .0"
102
102
ndarray = " 0.12"
103
103
104
104
[dependencies .pyo3 ]
105
- version = " 0.7 "
105
+ version = " 0.8 "
106
106
features = [" extension-module" ]
107
107
```
108
108
Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ ndarray = "0.12"
14
14
ndarray-linalg = { version = " 0.10" , features = [" openblas" ] }
15
15
16
16
[dependencies .pyo3 ]
17
- version = " 0.7 "
17
+ version = " 0.8 "
18
18
features = [" extension-module" ]
Original file line number Diff line number Diff line change 2
2
from setuptools_rust import RustExtension
3
3
4
4
5
- setup_requires = ['setuptools-rust>=0.6.0 ' ]
5
+ setup_requires = ['setuptools-rust>=0.10.2 ' ]
6
6
install_requires = ['numpy' ]
7
7
test_requires = install_requires + ['pytest' ]
8
8
Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ numpy = { path = "../.." }
13
13
ndarray = " 0.12"
14
14
15
15
[dependencies .pyo3 ]
16
- version = " 0.7 "
16
+ version = " 0.8 "
17
17
features = [" extension-module" ]
Original file line number Diff line number Diff line change 2
2
from setuptools_rust import RustExtension
3
3
4
4
5
- setup_requires = ['setuptools-rust>=0.6.0 ' ]
5
+ setup_requires = ['setuptools-rust>=0.10.2 ' ]
6
6
install_requires = ['numpy' ]
7
7
test_requires = install_requires + ['pytest' ]
8
8
You can’t perform that action at this time.
0 commit comments