Skip to content

Commit

Permalink
Update pyo3 to 0.17 for test crates
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Oct 26, 2022
1 parent b2ff8f3 commit 8628819
Show file tree
Hide file tree
Showing 28 changed files with 913 additions and 618 deletions.
2 changes: 1 addition & 1 deletion guide/src/distribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ or providing any Windows Python library files.

```toml
[dependencies]
pyo3 = { version = "0.16.5", features = ["extension-module", "generate-import-lib"] }
pyo3 = { version = "0.17.2", features = ["extension-module", "generate-import-lib"] }
```

It uses an external [`python3-dll-a`](https://docs.rs/python3-dll-a/latest/python3_dll_a/) crate to
Expand Down
138 changes: 81 additions & 57 deletions test-crates/lib_with_disallowed_lib/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test-crates/lib_with_disallowed_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ crate-type = ["cdylib"]

[dependencies]
libz-sys = { version = "1.1.2", default-features = false }
pyo3 = { version = "0.16.5", features = ["extension-module"] }
pyo3 = { version = "0.17.2", features = ["extension-module"] }
2 changes: 1 addition & 1 deletion test-crates/lib_with_path_dep/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ crate-type = ["cdylib"]

[dependencies]
# Don't use the macros feature, which makes compilation much faster
pyo3 = { version = "0.16.5", default-features = false, features = ["extension-module"] }
pyo3 = { version = "0.17.2", default-features = false, features = ["extension-module"] }
some_path_dep = { path = "../some_path_dep" }
Loading

0 comments on commit 8628819

Please sign in to comment.