File tree Expand file tree Collapse file tree 1 file changed +24
-8
lines changed Expand file tree Collapse file tree 1 file changed +24
-8
lines changed Original file line number Diff line number Diff line change 1414
1515jobs :
1616 build-wheels :
17- name : Build wheels on ${{ matrix.os }}
18- runs-on : ${{ matrix.os }}
19- strategy :
20- matrix :
21- os : [ ubuntu-24.04 ]
17+ # name: Build wheels on ${{ matrix.os }}
18+ # runs-on: ${{ matrix.os }}
19+ # strategy:
20+ # matrix:
21+ # os: [ ubuntu-24.04 ]
22+ # steps:
23+ # - name: Checkout
24+ # uses: actions/checkout@v4
25+ # - name: Set up Python
26+ # uses: actions/setup-python@v5
27+ # with:
28+ # python-version: ${{ env.PYTHON_VERSION }}
29+ # - name: Install cibuildwheel
30+ # run: python -m pip install cibuildwheel==${{ env.CIBW_VERSION }}
31+ # - name: Build wheels
32+ # run: python -m cibuildwheel --output-dir wheelhouse
33+ # - name: Upload artifacts
34+ # uses: actions/upload-artifact@v4
35+ # with:
36+ # name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
37+ # path: ./wheelhouse/*.whl
38+ # retention-days: 1
39+ runs-on : ubuntu-24.04
2240 steps :
2341 - name : Checkout
2442 uses : actions/checkout@v4
2543 - name : Set up Python
2644 uses : actions/setup-python@v5
2745 with :
2846 python-version : ${{ env.PYTHON_VERSION }}
29- - name : Install cibuildwheel
30- run : python -m pip install cibuildwheel==${{ env.CIBW_VERSION }}
3147 - name : Build wheels
32- run : python -m cibuildwheel --output-dir wheelhouse
48+ run : python -m build -w -o wheelhouse
3349 - name : Upload artifacts
3450 uses : actions/upload-artifact@v4
3551 with :
You can’t perform that action at this time.
0 commit comments