Skip to content

Commit

Permalink
fix: disable wheel builds for old python versions (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Jan 7, 2025
1 parent d1298de commit a249777
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
if: matrix.musl == ''
# to supply options, put them in 'env', like:
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_BUILD_VERBOSITY: 3
REQUIRE_CYTHON: 1
Expand All @@ -186,7 +186,7 @@ jobs:
if: matrix.musl == 'musllinux'
# to supply options, put them in 'env', like:
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_BUILD_VERBOSITY: 3
REQUIRE_CYTHON: 1
Expand Down

0 comments on commit a249777

Please sign in to comment.