File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
cvxpy/reductions/solvers/conic_solvers Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ if [[ "$RUNNER_OS" != "macOS" ]] || [[ $(uname -m) != "x86_64" ]]; then
1515fi
1616
1717if [[ " $PYTHON_VERSION " == " 3.12" ]]; then
18- python -m pip install " ortools>=9.7,<9.12 "
18+ python -m pip install " ortools>=9.7,<9.15 "
1919fi
2020
2121if [[ " $RUNNER_OS " == " Windows" ]]; then
Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ def import_solver(self) -> None:
5252 if Version (ortools .__version__ ) < Version ('9.5.0' ):
5353 raise RuntimeError (f'Version of ortools ({ ortools .__version__ } ) '
5454 f'is too old. Expected >= 9.5.0.' )
55- if Version (ortools .__version__ ) >= Version ('9.12 .0' ):
55+ if Version (ortools .__version__ ) >= Version ('9.15 .0' ):
5656 raise RuntimeError ('Unrecognized new version of ortools '
57- f'({ ortools .__version__ } ). Expected < 9.12 .0. '
57+ f'({ ortools .__version__ } ). Expected < 9.15 .0. '
5858 'Please open a feature request on cvxpy to '
5959 'enable support for this version.' )
6060
Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ def import_solver(self) -> None:
5252 if Version (ortools .__version__ ) < Version ('9.7.0' ):
5353 raise RuntimeError (f'Version of ortools ({ ortools .__version__ } ) '
5454 f'is too old. Expected >= 9.7.0.' )
55- if Version (ortools .__version__ ) >= Version ('9.12 .0' ):
55+ if Version (ortools .__version__ ) >= Version ('9.15 .0' ):
5656 raise RuntimeError ('Unrecognized new version of ortools '
57- f'({ ortools .__version__ } ). Expected < 9.12 .0. '
57+ f'({ ortools .__version__ } ). Expected < 9.15 .0. '
5858 'Please open a feature request on cvxpy to '
5959 'enable support for this version.' )
6060
Original file line number Diff line number Diff line change @@ -74,14 +74,14 @@ CVXOPT = ["cvxopt"]
7474DIFFCP = [" diffcp" ]
7575ECOS = [" ecos" ]
7676ECOS_BB = [" ecos" ]
77- GLOP = [" ortools>=9.7,<9.12 " ]
77+ GLOP = [" ortools>=9.7,<9.15 " ]
7878GLPK = [" cvxopt" ]
7979GLPK_MI = [" cvxopt" ]
8080GUROBI = [" gurobipy" ]
8181HIGHS = [" highspy" ]
8282MOSEK = [" Mosek" ]
8383OSQP = []
84- PDLP = [" ortools>=9.7,<9.12 " ]
84+ PDLP = [" ortools>=9.7,<9.15 " ]
8585PIQP = [" piqp" ]
8686PROXQP = [" proxsuite" ]
8787QOCO = [" qoco" ]
You can’t perform that action at this time.
0 commit comments