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 14
14
15
15
jobs :
16
16
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
22
40
steps :
23
41
- name : Checkout
24
42
uses : actions/checkout@v4
25
43
- name : Set up Python
26
44
uses : actions/setup-python@v5
27
45
with :
28
46
python-version : ${{ env.PYTHON_VERSION }}
29
- - name : Install cibuildwheel
30
- run : python -m pip install cibuildwheel==${{ env.CIBW_VERSION }}
31
47
- name : Build wheels
32
- run : python -m cibuildwheel --output-dir wheelhouse
48
+ run : python -m build -w -o wheelhouse
33
49
- name : Upload artifacts
34
50
uses : actions/upload-artifact@v4
35
51
with :
You can’t perform that action at this time.
0 commit comments