Skip to content

Commit 54cea27

Browse files
authored
Merge branch 'Pyomo:main' into writers-improved-determinism
2 parents a70162e + 91729ba commit 54cea27

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: .github/workflows/test_branches.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ jobs:
255255
python -m pip install --cache-dir cache/pip cplex docplex \
256256
|| echo "WARNING: CPLEX Community Edition is not available"
257257
python -m pip install --cache-dir cache/pip \
258-
-i https://pypi.gurobi.com gurobipy \
258+
-i https://pypi.gurobi.com gurobipy==10.0.3 \
259259
|| echo "WARNING: Gurobi is not available"
260260
python -m pip install --cache-dir cache/pip xpress \
261261
|| echo "WARNING: Xpress Community Edition is not available"
@@ -331,7 +331,7 @@ jobs:
331331
if test -z "${{matrix.slim}}"; then
332332
PYVER=$(echo "py${{matrix.python}}" | sed 's/\.//g')
333333
echo "Installing for $PYVER"
334-
for PKG in 'cplex>=12.10' docplex gurobi xpress cyipopt pymumps scip; do
334+
for PKG in 'cplex>=12.10' docplex 'gurobi=10.0.3' xpress cyipopt pymumps scip; do
335335
echo ""
336336
echo "*** Install $PKG ***"
337337
# conda can literally take an hour to determine that a

Diff for: .github/workflows/test_pr_and_main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ jobs:
285285
python -m pip install --cache-dir cache/pip cplex docplex \
286286
|| echo "WARNING: CPLEX Community Edition is not available"
287287
python -m pip install --cache-dir cache/pip \
288-
-i https://pypi.gurobi.com gurobipy \
288+
-i https://pypi.gurobi.com gurobipy==10.0.3 \
289289
|| echo "WARNING: Gurobi is not available"
290290
python -m pip install --cache-dir cache/pip xpress \
291291
|| echo "WARNING: Xpress Community Edition is not available"
@@ -361,7 +361,7 @@ jobs:
361361
if test -z "${{matrix.slim}}"; then
362362
PYVER=$(echo "py${{matrix.python}}" | sed 's/\.//g')
363363
echo "Installing for $PYVER"
364-
for PKG in 'cplex>=12.10' docplex gurobi xpress cyipopt pymumps scip; do
364+
for PKG in 'cplex>=12.10' docplex 'gurobi=10.0.3' xpress cyipopt pymumps scip; do
365365
echo ""
366366
echo "*** Install $PKG ***"
367367
# conda can literally take an hour to determine that a

0 commit comments

Comments
 (0)