Do not build wheels on older unsupported python versions (#568)

This commit is contained in:
J. Nick Koston 2023-10-12 09:05:22 -10:00 committed by GitHub
parent fd51db152e
commit d5de827803
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -20,6 +20,11 @@ jobs:
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_SKIP: cp36-* cp37-* cp38-*
CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc
CIBW_BUILD_VERBOSITY: 3
REQUIRE_CYTHON: 1
- uses: actions/upload-artifact@v3
with: