From eaad54210ebfbb9ba0bada9ecae8893fe21b064a Mon Sep 17 00:00:00 2001 From: Vineet Bansal Date: Wed, 27 May 2026 12:56:34 -0400 Subject: [PATCH 1/5] trying to fix ci --- backend/cuda/cibuildwheel.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/cuda/cibuildwheel.toml b/backend/cuda/cibuildwheel.toml index ced222b6..91f96635 100644 --- a/backend/cuda/cibuildwheel.toml +++ b/backend/cuda/cibuildwheel.toml @@ -8,8 +8,7 @@ repair-wheel-command = "" [tool.cibuildwheel.linux] before-all = [ "yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel9/x86_64/cuda-rhel9.repo", - "yum search cuda-toolkit*", - "yum install -y cuda-toolkit-12-6" + "yum install -y --nobest cuda-toolkit-12-6" ] environment = { CMAKE_CUDA_COMPILER = "/usr/local/cuda-12.6/bin/nvcc" } From ca8649b09399348a3fa098595809d713d31d756b Mon Sep 17 00:00:00 2001 From: Vineet Bansal Date: Wed, 27 May 2026 13:03:39 -0400 Subject: [PATCH 2/5] cuda toolkit version fix --- backend/cuda/cibuildwheel.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/cuda/cibuildwheel.toml b/backend/cuda/cibuildwheel.toml index 91f96635..961712dc 100644 --- a/backend/cuda/cibuildwheel.toml +++ b/backend/cuda/cibuildwheel.toml @@ -8,7 +8,8 @@ repair-wheel-command = "" [tool.cibuildwheel.linux] before-all = [ "yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel9/x86_64/cuda-rhel9.repo", - "yum install -y --nobest cuda-toolkit-12-6" + "yum install -y cuda-cccl-12-6-12.6.77-1.x86_64", + "yum install -y cuda-toolkit-12-6" ] environment = { CMAKE_CUDA_COMPILER = "/usr/local/cuda-12.6/bin/nvcc" } From d4a286b000845464248dc4f6586d36da7104eb12 Mon Sep 17 00:00:00 2001 From: Vineet Bansal Date: Tue, 9 Jun 2026 11:47:49 -0400 Subject: [PATCH 3/5] skip-broken for legacy cuda toolkit install using yum --- backend/cuda/cibuildwheel.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/cuda/cibuildwheel.toml b/backend/cuda/cibuildwheel.toml index 961712dc..8326e54d 100644 --- a/backend/cuda/cibuildwheel.toml +++ b/backend/cuda/cibuildwheel.toml @@ -9,7 +9,7 @@ repair-wheel-command = "" before-all = [ "yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel9/x86_64/cuda-rhel9.repo", "yum install -y cuda-cccl-12-6-12.6.77-1.x86_64", - "yum install -y cuda-toolkit-12-6" + "yum install -y cuda-toolkit-12-6 --skip-broken" ] environment = { CMAKE_CUDA_COMPILER = "/usr/local/cuda-12.6/bin/nvcc" } From f99553cc94d797e7a9f7b33702edc4083bab4015 Mon Sep 17 00:00:00 2001 From: Vineet Bansal Date: Tue, 9 Jun 2026 11:59:29 -0400 Subject: [PATCH 4/5] skipping cp38 --- backend/cuda/cibuildwheel.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/cuda/cibuildwheel.toml b/backend/cuda/cibuildwheel.toml index 8326e54d..ae663d26 100644 --- a/backend/cuda/cibuildwheel.toml +++ b/backend/cuda/cibuildwheel.toml @@ -1,6 +1,6 @@ [tool.cibuildwheel] build = "cp3*" -skip = ["cp314t-win_amd64", "*-win32", "*-manylinux_i686", "*-musllinux_*"] +skip = ["cp38-*", "cp314t-win_amd64", "*-win32", "*-manylinux_i686", "*-musllinux_*"] build-verbosity = 1 before-build = "rm -rf {package}/osqp_sources/build" repair-wheel-command = "" From 5d372f14c8022789605e68852f574ed3e872b5a4 Mon Sep 17 00:00:00 2001 From: Vineet Bansal Date: Tue, 9 Jun 2026 12:13:50 -0400 Subject: [PATCH 5/5] setopt=obsoletes=0 --- backend/cuda/cibuildwheel.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/backend/cuda/cibuildwheel.toml b/backend/cuda/cibuildwheel.toml index ae663d26..a0e7bed5 100644 --- a/backend/cuda/cibuildwheel.toml +++ b/backend/cuda/cibuildwheel.toml @@ -1,15 +1,14 @@ [tool.cibuildwheel] build = "cp3*" -skip = ["cp38-*", "cp314t-win_amd64", "*-win32", "*-manylinux_i686", "*-musllinux_*"] +skip = ["cp314t-win_amd64", "*-win32", "*-manylinux_i686", "*-musllinux_*"] build-verbosity = 1 before-build = "rm -rf {package}/osqp_sources/build" repair-wheel-command = "" [tool.cibuildwheel.linux] before-all = [ - "yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel9/x86_64/cuda-rhel9.repo", - "yum install -y cuda-cccl-12-6-12.6.77-1.x86_64", - "yum install -y cuda-toolkit-12-6 --skip-broken" + "yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel8/x86_64/cuda-rhel8.repo", + "yum install -y --setopt=obsoletes=0 cuda-toolkit-12-6" ] environment = { CMAKE_CUDA_COMPILER = "/usr/local/cuda-12.6/bin/nvcc" }