Skip to content

Commit

Permalink
chore: try ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nmammeri committed Jun 8, 2024
1 parent 6c0bcef commit 89ff8eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ version = "0.1.0"


[lib]
name = "extractrs" # This has to match the folder name under python foler i.e. python/extractrs/
crate-type = ["cdylib"]
doc = false

[dependencies]
# "abi3-py38" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.11
pyo3 = { version = "0.21.2", features = ["abi3", "abi3-py38"] }
extract-rs = { version = "0.1.0", path = "../../extract-core" }
# "abi3-py310" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.10
pyo3 = { version = "0.21.2", features = ["abi3", "abi3-py310"] }
extract-rs = { path = "../../extract-core" }
2 changes: 1 addition & 1 deletion bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description = "extract-rs Python Binding"
license = { text = "Apache-2.0" }
readme = "README.md"
# PyO3 doesn't support python 3.13 yet.
requires-python = ">=3.8, < 3.13"
requires-python = ">=3.10, < 3.13"


[project.urls]
Expand Down

0 comments on commit 89ff8eb

Please sign in to comment.