Skip to content

Commit a11ca3b

Browse files
committed
Bump version to 0.7
1 parent 713d24f commit a11ca3b

File tree

7 files changed

+13
-10
lines changed

7 files changed

+13
-10
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
- v0.7.0
3+
- Update PyO3 to 0.8
4+
25
- v0.6.0
36
- Update PyO3 to 0.7
47
- Drop Python2 support

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "numpy"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Toshiki Teramura <[email protected]>", "Yuji Kanagawa <[email protected]>"]
55
description = "Rust binding of NumPy C-API"
66
documentation = "https://rust-numpy.github.io/rust-numpy/numpy"
@@ -15,7 +15,7 @@ libc = "0.2"
1515
num-complex = "0.2"
1616
num-traits = "0.2"
1717
ndarray = "0.12"
18-
pyo3 = {git = "https://github.com/PyO3/pyo3"}
18+
pyo3 = "0.8"
1919

2020
[features]
2121
# In default setting, python version is automatically detected

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ using [setuptools-rust](https://github.com/PyO3/setuptools-rust).
5656
name = "numpy-test"
5757

5858
[dependencies]
59-
pyo3 = "0.7"
60-
numpy = "0.6.0"
59+
pyo3 = "0.8"
60+
numpy = "0.7.0"
6161
```
6262

6363
```rust
@@ -98,11 +98,11 @@ name = "rust_ext"
9898
crate-type = ["cdylib"]
9999

100100
[dependencies]
101-
numpy = "0.6.0"
101+
numpy = "0.7.0"
102102
ndarray = "0.12"
103103

104104
[dependencies.pyo3]
105-
version = "0.7"
105+
version = "0.8"
106106
features = ["extension-module"]
107107
```
108108

examples/linalg/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ ndarray = "0.12"
1414
ndarray-linalg = { version = "0.10", features = ["openblas"] }
1515

1616
[dependencies.pyo3]
17-
version = "0.7"
17+
version = "0.8"
1818
features = ["extension-module"]

examples/linalg/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools_rust import RustExtension
33

44

5-
setup_requires = ['setuptools-rust>=0.6.0']
5+
setup_requires = ['setuptools-rust>=0.10.2']
66
install_requires = ['numpy']
77
test_requires = install_requires + ['pytest']
88

examples/simple-extension/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ numpy = { path = "../.." }
1313
ndarray = "0.12"
1414

1515
[dependencies.pyo3]
16-
version = "0.7"
16+
version = "0.8"
1717
features = ["extension-module"]

examples/simple-extension/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools_rust import RustExtension
33

44

5-
setup_requires = ['setuptools-rust>=0.6.0']
5+
setup_requires = ['setuptools-rust>=0.10.2']
66
install_requires = ['numpy']
77
test_requires = install_requires + ['pytest']
88

0 commit comments

Comments
 (0)