Disable Python 3.13 when building wheels for CI

Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
This commit is contained in:
Keith Battocchi 2024-08-07 16:53:50 -04:00 коммит произвёл Keith Battocchi
Родитель 1677eada5c
Коммит ffffc317c7
1 изменённых файлов: 2 добавлений и 2 удалений

4
.github/workflows/publish-package.yml поставляемый
Просмотреть файл

@ -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