Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(bindings/python): update maturin to 0.14.16 #1777

Merged
merged 1 commit into from
Mar 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ version = "0.30.4"
[lib]
crate-type = ["cdylib"]
doc = false
# Per python extension module naming convention we use `_opendal`
# instead of `opendal_python` to indicate that it's private API.
# `_opendal_python` was also considered but it's a bit mouthful in python context.
name = "_opendal"

[dependencies]
chrono = { version = "0.4.24", default-features = false, features = ["std"] }
Expand All @@ -40,6 +36,3 @@ opendal = { version = "0.30", path = "../../core" }
pyo3 = { version = "0.18", features = ["chrono"] }
pyo3-asyncio = { version = "0.18", features = ["tokio-runtime"] }
tokio = "1"

[package.metadata.maturin]
name = "opendal._opendal"
3 changes: 2 additions & 1 deletion bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[build-system]
build-backend = "maturin"
requires = ["maturin>=0.14,<0.15"]
requires = ["maturin>=0.14.16,<0.15"]

[project]
classifiers = [
Expand All @@ -41,5 +41,6 @@ Homepage = "https://opendal.apache.org/"
Repository = "https://github.com/apache/incubator-opendal"

[tool.maturin]
module-name = "opendal._opendal"
features = ["pyo3/extension-module"]
python-source = "python"