File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -36,14 +36,19 @@ jobs:
36
36
uses : actions/checkout@v4
37
37
with :
38
38
submodules : true
39
+ - name : Set up QEMU
40
+ if : runner.os == 'Linux'
41
+ uses : docker/setup-qemu-action@v3
42
+ with :
43
+ platforms : arm64
39
44
- name : Build wheels
40
45
uses : pypa/cibuildwheel@v2.16
41
46
env :
42
47
CIBW_SKIP : pp*
43
48
CIBW_ARCHS_WINDOWS : AMD64
44
- CIBW_ARCHS_LINUX : x86_64
49
+ CIBW_ARCHS_LINUX : x86_64 aarch64
45
50
CIBW_ARCHS_MACOS : x86_64 arm64
46
- CIBW_TEST_SKIP : cp312* *arm64
51
+ CIBW_TEST_SKIP : cp312* *arm64 *aarch64
47
52
- name : Upload wheels
48
53
uses : actions/upload-artifact@v4
49
54
with :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " tree-sitter"
7
- version = " 0.21.1 "
7
+ version = " 0.21.2 "
8
8
description = " Python bindings for the Tree-Sitter parsing library"
9
9
keywords = [" incremental" , " parsing" , " tree-sitter" ]
10
10
classifiers = [
You can’t perform that action at this time.
0 commit comments