Skip to content

Commit b787e04

Browse files
authored
Merge pull request #122 from jpmorganchase/feature/build-test
let cibuildwheel detect pure Python wheels and skip auditwheel by set…
2 parents f753983 + 5b2826c commit b787e04

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/pypi-publish.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,14 @@ jobs:
2020
uses: pypa/cibuildwheel@v3.1.3
2121
env:
2222
CIBW_BUILD_FRONTEND: "build"
23+
CIBW_PLATFORM: "linux"
24+
CIBW_ARCHS: "x86_64"
25+
CIBW_SKIP: "pp*"
26+
with:
27+
output-dir: wheelhouse
2328
- uses: actions/upload-artifact@v4
2429
with:
25-
path: ./wheelhouse/*.whl
30+
path: wheelhouse/*.whl
2631

2732
build_sdist:
2833
name: Build Source Distribution

0 commit comments

Comments
 (0)