From fbdf0c193bd9f7840b9c3262c950fb3cfa375847 Mon Sep 17 00:00:00 2001 From: Nathan Dunfield Date: Fri, 6 Oct 2023 18:04:05 -0500 Subject: [PATCH] CI: fix typo that disabled building Python 3.12 for Linux --- .github/workflows/linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 5094f8f..b257fc0 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -26,7 +26,7 @@ jobs: run: | python3 -m cibuildwheel --output-dir wheelhouse env: - CIBW_BUILD: cp310-manylinux_x86_64 cp311-manylinux_x86-64 cp312-:manylinux_x86_64 + CIBW_BUILD: cp310-manylinux_x86_64 cp311-manylinux_x86-64 cp312-manylinux_x86_64 CIBW_BEFORE_BUILD: | pip3 install cython>=3.0.0 CIBW_REPAIR_WHEEL_COMMAND_LINUX: auditwheel repair --strip -w {dest_dir} {wheel}