mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 09:50:01 +00:00
update Cython (#581)
This commit is contained in:
parent
140864249f
commit
039022cecb
3 changed files with 11 additions and 3 deletions
10
.github/workflows/wheel.yml
vendored
10
.github/workflows/wheel.yml
vendored
|
|
@ -3,6 +3,7 @@ on:
|
|||
push:
|
||||
branches: [main]
|
||||
create:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build_wheels:
|
||||
|
|
@ -23,7 +24,7 @@ jobs:
|
|||
platforms: arm64
|
||||
|
||||
- name: Set up Python 3.x
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.x"
|
||||
cache: "pip"
|
||||
|
|
@ -43,6 +44,13 @@ jobs:
|
|||
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
|
||||
CIBW_SKIP: pp*
|
||||
|
||||
- name: Build pure Python wheel
|
||||
env:
|
||||
MSGPACK_PUREPYTHON: "1"
|
||||
run: |
|
||||
pip install build
|
||||
python -m build -w -o wheelhouse
|
||||
|
||||
- name: Upload Wheels to artifact
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue