fix: disable wheel builds for old python versions (#346)

This commit is contained in:
J. Nick Koston 2025-01-07 11:27:25 -10:00 committed by GitHub
parent d1298de2a1
commit a249777e03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -175,7 +175,7 @@ jobs:
if: matrix.musl == '' if: matrix.musl == ''
# to supply options, put them in 'env', like: # to supply options, put them in 'env', like:
env: env:
CIBW_SKIP: "*musllinux*" CIBW_SKIP: "*p36-* *p37-* *p38-* *musllinux*"
CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc
CIBW_BUILD_VERBOSITY: 3 CIBW_BUILD_VERBOSITY: 3
REQUIRE_CYTHON: 1 REQUIRE_CYTHON: 1
@ -186,7 +186,7 @@ jobs:
if: matrix.musl == 'musllinux' if: matrix.musl == 'musllinux'
# to supply options, put them in 'env', like: # to supply options, put them in 'env', like:
env: env:
CIBW_SKIP: "*manylinux*" CIBW_SKIP: "*p36-* *p37-* *p38-* *manylinux*"
CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc
CIBW_BUILD_VERBOSITY: 3 CIBW_BUILD_VERBOSITY: 3
REQUIRE_CYTHON: 1 REQUIRE_CYTHON: 1