We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efae53d commit 1e67a9bCopy full SHA for 1e67a9b
1 file changed
.github/workflows/build.yml
@@ -42,8 +42,11 @@ jobs:
42
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
43
run: >-
44
echo LIBCST_NO_LOCAL_SCHEME=1 >> $GITHUB_ENV
45
+ - name: Enable building wheels for pre-release CPython versions
46
+ if: github.event_name != 'release'
47
+ run: echo CIBW_ENABLE=cpython-prerelease >> $GITHUB_ENV
48
- name: Build wheels
- uses: pypa/cibuildwheel@v2.23.3
49
+ uses: pypa/cibuildwheel@v3.0.0b2
50
- uses: actions/upload-artifact@v4
51
with:
52
path: wheelhouse/*.whl
0 commit comments