diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 3ba981d..9e368b3 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -13,14 +13,21 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.11 + + - name: Install cibuildwheel + run: pip install cibuildwheel + - name: Build wheels - uses: pypa/cibuildwheel@v2.16.2 + run: cibuildwheel --output-dir wheelhouse env: - # Build wheels for CPython only, skipping PyPy - CIBW_BUILD: "cp*" - CIBW_SKIP: "*-pp*" - + CIBW_BUILD: "cp*" + CIBW_SKIP: "*-pp*" + - uses: actions/upload-artifact@v3 with: name: artifact-name - path: ./wheelhouse/*.whl \ No newline at end of file + path: ./wheelhouse/*.whl