There was an error while loading. Please reload this page.
1 parent cfc1993 commit 071cbb0Copy full SHA for 071cbb0
1 file changed
.github/workflows/release.yml
@@ -47,7 +47,7 @@ jobs:
47
if: matrix.chip == 'AX650'
48
uses: actions/setup-python@v5
49
with:
50
- python-version: '3.10'
+ python-version: '3.11'
51
52
- name: Install Python build deps
53
@@ -108,8 +108,13 @@ jobs:
108
run: |
109
cd python
110
python -m build --wheel
111
+ # Rename wheel with correct aarch64 platform tag
112
mkdir -p ../wheels
- cp dist/*.whl ../wheels/
113
+ for whl in dist/*.whl; do
114
+ new_name=$(echo $whl | sed 's/-py3-none-any/-cp311-cp311-linux_aarch64/')
115
+ mv "$whl" "$new_name"
116
+ cp "$new_name" ../wheels/
117
+ done
118
119
- name: Package C++ install
120
0 commit comments