Skip to content

Commit

Permalink
Temporarily skip building wheels for 3.13 until it is released
Browse files Browse the repository at this point in the history
3.13 is in RC still, and not all dependencies have wheels for it built
yet.
  • Loading branch information
imciner2 committed Aug 14, 2024
1 parent dea9cc1 commit 04725fc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build_default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build_mkl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 04725fc

Please sign in to comment.