Skip to content

Commit 51c4860

Browse files
committed
Use git version of pyo3 temporary
1 parent 5751ad8 commit 51c4860

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ license-file = "LICENSE"
1313
libc = "0.2"
1414
num-complex = "0.1"
1515
ndarray = "0.11"
16-
pyo3 = "0.4.0"
16+
pyo3 = { git = "https://github.com/kngwyu/pyo3.git", branch = "upd" }

example/extensions/Cargo.toml

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

1010
[dependencies]
1111
numpy = { path = "../.." }
12-
pyo3 = { version = "0.4.0", features = ["extension-module"] }
1312
ndarray = "0.11"
13+
14+
[dependencies.pyo3]
15+
git = "https://github.com/kngwyu/pyo3.git"
16+
branch = "upd"
17+
features = ["extension-module"]

0 commit comments

Comments
 (0)