File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " c2pa-python"
7- version = " 0.26.0 "
7+ version = " 0.26.1 "
88requires-python = " >=3.10"
99description = " Python bindings for the C2PA Content Authenticity Initiative (CAI) library"
1010readme = { file = " README.md" , content-type = " text/markdown" }
You can’t perform that action at this time.
0 commit comments