We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e11368 commit 9e26d80Copy full SHA for 9e26d80
.github/workflows/wheel.yml
@@ -32,21 +32,19 @@ jobs:
32
make cython
33
34
- name: Build
35
- uses: pypa/cibuildwheel@v2.17.0
+ uses: pypa/cibuildwheel@v2.20.0
36
env:
37
CIBW_TEST_REQUIRES: "pytest"
38
CIBW_TEST_COMMAND: "pytest {package}/test"
39
CIBW_ARCHS_LINUX: auto aarch64
40
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
41
CIBW_SKIP: pp*
42
43
- - name: Build pure Python wheel
+ - name: Build sdist
44
if: runner.os == 'Linux'
45
- env:
46
- MSGPACK_PUREPYTHON: "1"
47
run: |
48
pip install build
49
- python -m build -w -o wheelhouse
+ python -m build -s -o wheelhouse
50
51
- name: Upload Wheels to artifact
52
uses: actions/upload-artifact@v4
0 commit comments