fix(python): critical bug fixes across Python wrapper

This commit is contained in:
Miha Kralj
2026-03-01 21:35:19 -08:00
parent 9c03a5bbbe
commit ce4416d388
40 changed files with 9592 additions and 1397 deletions
+10 -1
View File
@@ -105,7 +105,9 @@ jobs:
-r ${{ matrix.rid }} `
--self-contained true `
-o $nativeOut `
-p:ContinuousIntegrationBuild=true
-p:ContinuousIntegrationBuild=true `
-p:DebugSymbols=false `
-p:DebugType=none
$expectedNative = Join-Path $nativeOut "${{ matrix.native_file }}"
if (-not (Test-Path $expectedNative)) {
@@ -113,6 +115,13 @@ jobs:
exit 1
}
Get-ChildItem $nativeOut -File | Where-Object {
$_.Name -ne "${{ matrix.native_file }}"
} | Remove-Item -Force
"Native payload files:"
Get-ChildItem $nativeOut -File | ForEach-Object { $_.Name }
- name: Set wheel version for development
if: github.ref_name != 'main'
shell: pwsh