Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporarily skip building wheels for 3.13 until it is released #158

Merged
merged 2 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,14 @@ jobs:
choco install windows-sdk-8.1

- name: Build wheels
uses: pypa/cibuildwheel@v2.19
uses: pypa/cibuildwheel@v2.20
with:
package-dir: backend/cuda
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
5 changes: 3 additions & 2 deletions .github/workflows/build_default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,13 @@ jobs:
platforms: arm64

- name: Build wheels
uses: pypa/cibuildwheel@v2.19
uses: pypa/cibuildwheel@v2.20
with:
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
5 changes: 3 additions & 2 deletions .github/workflows/build_mkl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@ jobs:
- uses: actions/checkout@master

- name: Build wheels
uses: pypa/cibuildwheel@v2.19
uses: pypa/cibuildwheel@v2.20
with:
package-dir: backend/mkl
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
Loading