From d5de827803b72428d098c42b76cbd97bc70c1403 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 12 Oct 2023 09:05:22 -1000 Subject: [PATCH] Do not build wheels on older unsupported python versions (#568) --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 44033da..ad2fb72 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: