We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7084492 commit fd7a3b9Copy full SHA for fd7a3b9
.github/workflows/build_wheels.yml
@@ -15,9 +15,12 @@ jobs:
15
steps:
16
- name: Check out repository code
17
uses: actions/checkout@v5
18
- - name: Build wheels
19
- uses: pypa/cibuildwheel@v3.3.0
20
- - uses: actions/upload-artifact@v4
+ - name: Set up Python
+ uses: actions/setup-python@v6
21
with:
22
- name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
23
- path: ./wheelhouse/*.whl
+ python-version: '3.13'
+ cache: 'pip' # caching pip dependencies
+ - name: Install build dependencies
24
+ run: pip install -r requirements.txt
25
+ - name: Build sdist and wheel
26
+ run: python -m build --sdist --wheel .
0 commit comments