Skip to content

Commit 4d1f392

Browse files
upgrade to pyo3 0.25.1
1 parent 85da772 commit 4d1f392

5 files changed

Lines changed: 188 additions & 251 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
__pycache__
44
*.pyc
55
/.vscode
6+
.venv

Cargo.lock

Lines changed: 36 additions & 147 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ rand_pcg = "0.3.1"
3131
lazy_static = "1.4"
3232

3333
[dependencies.pyo3]
34-
version = "0.16"
34+
version = "0.25.1"
3535
optional = true
3636
features = ["num-bigint"]

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# SPDX-License-Identifier: LGPL-2.1-or-later
22
# See Notices.txt for copyright information
33
[build-system]
4-
requires = ["maturin>=0.11,<0.12"]
4+
requires = ["maturin>=1.0,<2.0"]
55
build-backend = "maturin"
66

77
[tool.maturin]
8-
bindings = "pyo3"
9-
cargo-extra-args = "--features python-extension"
8+
features = ["python-extension"]

0 commit comments

Comments
 (0)