From 2cef9988b62550e05e7e7fe91469390fa47fcc7e Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 8 Nov 2023 22:11:06 -0600 Subject: [PATCH] fix: skip wheel builds for eol python and older python with aarch64 The wheels were taking more than 5 hours to build --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b5fca4cb..d2bc4959c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -156,7 +156,7 @@ jobs: uses: pypa/cibuildwheel@v2.16.2 # to supply options, put them in 'env', like: env: - CIBW_SKIP: cp36-* + CIBW_SKIP: cp36-* cp37-* pp36-* pp37-* *p38-*_aarch64 *p39-*_aarch64 *p310-*_aarch64 CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc CIBW_ARCHS_LINUX: auto aarch64 CIBW_BUILD_VERBOSITY: 3