We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60508cb commit fb5f0e0Copy full SHA for fb5f0e0
1 file changed
cibuildwheel.toml
@@ -6,7 +6,10 @@ before-build = "rm -rf {package}/osqp_sources/build"
6
# Install CPU-only version of torch beforehand since that allows cibuildwheel
7
# to satisfy the "test" dependency group install, but much faster. The runtime
8
# cost of torch-based osqp tests are considered negligible so torch-cpu is ok.
9
-before-test = "pip install torch --index-url https://download.pytorch.org/whl/cpu"
+before-test = """
10
+pip install "scipy!=1.12.0,<1.17"
11
+pip install torch --index-url https://download.pytorch.org/whl/cpu"
12
+"""
13
test-groups = ["test"]
14
test-command = "python -m pytest -s {project}/src/osqp/tests"
15
# 09/10/25 - Skip testing on cp313-manylinux_aarch64 because torch/numpy deps are unsatisfiable
0 commit comments