Skip to content

Commit 5d519d4

Browse files
committed
Fix CI package build - Add python-packages config to include Python wrapper. This ensures maturin includes both Rust library and Python wrapper in the wheel, fixing PyPI import issues.
1 parent 691a86e commit 5d519d4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fast-c2pa-python"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
edition = "2021"
55
authors = ["Sightengine <[email protected]>"]
66
license = "MIT OR Apache-2.0"

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "fast-c2pa-python"
7-
version = "0.1.5"
7+
version = "0.1.6"
88
description = "Fast Python library for reading C2PA metadata using PyO3 bindings to c2pa-rs"
99
authors = [{name = "Sightengine", email = "[email protected]"}]
1010
license = {text = "MIT OR Apache-2.0"}
@@ -24,4 +24,5 @@ classifiers = [
2424
]
2525

2626
[tool.maturin]
27-
features = ["pyo3/extension-module"]
27+
features = ["pyo3/extension-module"]
28+
python-packages = ["fast_c2pa_python"]

0 commit comments

Comments
 (0)