From e4cbe3763617585ba88d836084589dd17d4a4926 Mon Sep 17 00:00:00 2001 From: Max Grover Date: Fri, 8 Nov 2024 11:32:53 -0600 Subject: [PATCH] DEP: Update to only support python 3.10+ wheels (#1683) In accordance with NEP/scientific python support, only support wheels for 3.10+ --- .github/workflows/wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index fea3b0daac..739af4c04c 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -49,7 +49,7 @@ jobs: with: output-dir: dist env: - CIBW_BUILD: "cp39-* cp310-* cp311-* cp312*" + CIBW_BUILD: "cp310-* cp311-* cp312*" CIBW_SKIP: "*-musllinux_*" # numpy doesn't have wheels for musllinux so we can't build some quickly and without bloating CIBW_ARCHS_LINUX: "x86_64" MACOSX_DEPLOYMENT_TARGET: "10.9" # as of CIBW 2.9, this is the default value, pin it so it can't be bumped silently