diff --git a/README.md b/README.md index 622a94ae5..268a352ba 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ name = "rust_ext" crate-type = ["cdylib"] [dependencies] -pyo3 = { version = "0.27", features = ["extension-module"] } +pyo3 = { version = "0.27" } numpy = "0.27" ``` diff --git a/examples/linalg/Cargo.toml b/examples/linalg/Cargo.toml index b25ac2a64..7fb40bde7 100644 --- a/examples/linalg/Cargo.toml +++ b/examples/linalg/Cargo.toml @@ -9,7 +9,7 @@ name = "rust_linalg" crate-type = ["cdylib"] [dependencies] -pyo3 = { version = "0.27.0", features = ["extension-module"] } +pyo3 = { version = "0.27.0" } numpy = { path = "../.." } ndarray-linalg = { version = "0.14.1", features = ["openblas-system"] } diff --git a/examples/linalg/pyproject.toml b/examples/linalg/pyproject.toml index afe068e43..c60d19493 100644 --- a/examples/linalg/pyproject.toml +++ b/examples/linalg/pyproject.toml @@ -1,3 +1,3 @@ [build-system] build-backend = "maturin" -requires = ["maturin>=1.0,<2.0"] +requires = ["maturin>=1.9.4,<2.0"] diff --git a/examples/parallel/Cargo.toml b/examples/parallel/Cargo.toml index 80b9c84ad..8835d39c6 100644 --- a/examples/parallel/Cargo.toml +++ b/examples/parallel/Cargo.toml @@ -9,7 +9,7 @@ name = "rust_parallel" crate-type = ["cdylib"] [dependencies] -pyo3 = { version = "0.27.0", features = ["extension-module", "multiple-pymethods"] } +pyo3 = { version = "0.27.0", features = ["multiple-pymethods"] } numpy = { path = "../.." } ndarray = { version = "0.17", features = ["rayon", "blas"] } blas-src = { version = "0.8", features = ["openblas"] } diff --git a/examples/parallel/pyproject.toml b/examples/parallel/pyproject.toml index afe068e43..c60d19493 100644 --- a/examples/parallel/pyproject.toml +++ b/examples/parallel/pyproject.toml @@ -1,3 +1,3 @@ [build-system] build-backend = "maturin" -requires = ["maturin>=1.0,<2.0"] +requires = ["maturin>=1.9.4,<2.0"] diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index 8f6c23844..6f1e2a3d3 100644 --- a/examples/simple/Cargo.toml +++ b/examples/simple/Cargo.toml @@ -9,7 +9,7 @@ name = "rust_ext" crate-type = ["cdylib"] [dependencies] -pyo3 = { version = "0.27.0", features = ["extension-module", "abi3-py37"] } +pyo3 = { version = "0.27.0", features = ["abi3-py37"] } numpy = { path = "../.." } [workspace] diff --git a/examples/simple/pyproject.toml b/examples/simple/pyproject.toml index afe068e43..c60d19493 100644 --- a/examples/simple/pyproject.toml +++ b/examples/simple/pyproject.toml @@ -1,3 +1,3 @@ [build-system] build-backend = "maturin" -requires = ["maturin>=1.0,<2.0"] +requires = ["maturin>=1.9.4,<2.0"]