diff --git a/.github/workflows/build_cuda.yml b/.github/workflows/build_cuda.yml index 6752e82..bc90708 100644 --- a/.github/workflows/build_cuda.yml +++ b/.github/workflows/build_cuda.yml @@ -39,7 +39,8 @@ jobs: output-dir: wheelhouse env: CIBW_BUILD: "cp3*" - CIBW_SKIP: "cp36-* cp37-* *-win32 *-manylinux_i686 *-musllinux_* *-macosx_*" + # Temporarily skip 3.13 because it is still an RC and our dependencies aren't there yet + CIBW_SKIP: "cp36-* cp37-* *-win32 *-manylinux_i686 *-musllinux_* *-macosx_* cp313-*" CIBW_BUILD_VERBOSITY: 1 # Clean the build directory between builds diff --git a/.github/workflows/build_default.yml b/.github/workflows/build_default.yml index 9025197..cc77bae 100644 --- a/.github/workflows/build_default.yml +++ b/.github/workflows/build_default.yml @@ -68,7 +68,8 @@ jobs: output-dir: wheelhouse env: CIBW_BUILD: "cp3*" - CIBW_SKIP: "cp36-* cp37-* *-win32 *-manylinux_i686 *-musllinux_*" + # Temporarily skip 3.13 because it is still an RC and our dependencies aren't there yet + CIBW_SKIP: "cp36-* cp37-* *-win32 *-manylinux_i686 *-musllinux_* cp313-*" # Clean the build directory between builds CIBW_BEFORE_BUILD: >- rm -rf {package}/osqp_sources/build diff --git a/.github/workflows/build_mkl.yml b/.github/workflows/build_mkl.yml index a06a58c..a6f42f8 100644 --- a/.github/workflows/build_mkl.yml +++ b/.github/workflows/build_mkl.yml @@ -31,7 +31,8 @@ jobs: output-dir: wheelhouse env: CIBW_BUILD: "cp3*" - CIBW_SKIP: "cp36-* cp37-* *-win32 *-manylinux_i686 *-musllinux_*" + # Temporarily skip 3.13 because it is still an RC and our dependencies aren't there yet + CIBW_SKIP: "cp36-* cp37-* *-win32 *-manylinux_i686 *-musllinux_* cp313-*" CIBW_BUILD_VERBOSITY: 1 # Clean the build directory between builds