Skip to content

Commit 586848f

Browse files
committed
fix: Build debug
1 parent 0090ab5 commit 586848f

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/build-wheel.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,18 @@ jobs:
123123
Write-Host "src/c2pa/libs directory contents:"
124124
Get-ChildItem -Recurse -Path src/c2pa/libs
125125
126+
# Create setup.cfg to specify platform-specific wheel
127+
@"
128+
[bdist_wheel]
129+
plat-name = win_amd64
130+
"@ | Out-File -FilePath setup.cfg -Encoding utf8
131+
126132
# Build wheel using modern build tool
127133
python -m build --wheel
128134
135+
# Clean up setup.cfg
136+
Remove-Item setup.cfg -ErrorAction SilentlyContinue
137+
129138
# Verify wheel structure
130139
twine check dist/*
131140

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "c2pa-python"
7-
version = "0.26.0"
7+
version = "0.26.1"
88
requires-python = ">=3.10"
99
description = "Python bindings for the C2PA Content Authenticity Initiative (CAI) library"
1010
readme = { file = "README.md", content-type = "text/markdown" }

0 commit comments

Comments
 (0)