From a249777e03d71502cbbde5d20cab2f3685fb5adb Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 7 Jan 2025 11:27:25 -1000 Subject: [PATCH] fix: disable wheel builds for old python versions (#346) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b985fe6..c6f9225 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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