Skip to content

Commit

Permalink
Disable Python 3.13 when building wheels for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kbattocchi committed Aug 7, 2024
1 parent 1677ead commit 1f88903
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ jobs:
- name: Ensure latest pip and setuptools
run: python -m pip install --upgrade pip && pip install --upgrade setuptools
- name: Build wheels
run: pip install cibuildwheel && python -m cibuildwheel --output-dir dist
run: pip install 'cibuildwheel < 3' && python -m cibuildwheel --output-dir dist
env:
CIBW_BUILD: cp3*
CIBW_BUILD: ${{ inputs.use_lkg && 'cp3{8,9,10,11,12}-*' || 'cp3*' }}
CIBW_SKIP: "*musl* *win32 *i686"
- name: Upload wheels as artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 1f88903

Please sign in to comment.