File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 3
3
push :
4
4
branches : [main]
5
5
create :
6
+ workflow_dispatch :
6
7
7
8
jobs :
8
9
build_wheels :
23
24
platforms : arm64
24
25
25
26
- name : Set up Python 3.x
26
- uses : actions/setup-python@v4
27
+ uses : actions/setup-python@v5
27
28
with :
28
29
python-version : " 3.x"
29
30
cache : " pip"
43
44
CIBW_ARCHS_MACOS : x86_64 universal2 arm64
44
45
CIBW_SKIP : pp*
45
46
47
+ - name : Build pure Python wheel
48
+ env :
49
+ MSGPACK_PUREPYTHON : " 1"
50
+ run : |
51
+ pip install build
52
+ python -m build -w -o wheelhouse
53
+
46
54
- name : Upload Wheels to artifact
47
55
uses : actions/upload-artifact@v1
48
56
with :
Original file line number Diff line number Diff line change 2
2
requires = [
3
3
# Also declared in requirements.txt, if updating here please also update
4
4
# there
5
- " Cython~=3.0.0 " ,
5
+ " Cython~=3.0.8 " ,
6
6
" setuptools >= 35.0.2" ,
7
7
]
8
8
build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change 1
1
# Also declared in pyproject.toml, if updating here please also update there.
2
- Cython ~= 3.0.0
2
+ Cython ~= 3.0.8
3
3
4
4
# Tools required only for development. No need to add it to pyproject.toml file.
5
5
black == 23.3.0
You can’t perform that action at this time.
0 commit comments