@@ -320,14 +320,7 @@ jobs:
320320 python -m pip install --cache-dir cache/pip pymysql || \
321321 python -m pip install --cache-dir cache/pip pymysql
322322 if test -z "${{matrix.slim}}"; then
323- # Disallow cplex 22.1.2.1 because it errors fatally when
324- # computing IIS on python 3.13 and 3.14
325- if [[ ${{matrix.python}} =~ 3.1[34] ]]; then
326- CPLEX='cplex!=22.1.2.1'
327- else
328- CPLEX='cplex'
329- fi
330- python -m pip install --cache-dir cache/pip "$CPLEX" docplex \
323+ python -m pip install --cache-dir cache/pip cplex docplex \
331324 || echo "WARNING: CPLEX Community Edition is not available"
332325 python -m pip install --cache-dir cache/pip gurobipy \
333326 || echo "WARNING: Gurobi is not available"
@@ -410,14 +403,8 @@ jobs:
410403 PYVER=$(echo "py${{matrix.python}}" | sed 's/\.//g')
411404 echo "Installing for $PYVER"
412405 #
413- # Disallow cplex 22.1.2 and 22.1.2.1, as they error fatally when
414- # computing IIS on Python 3.13 and 3.14
415406 # Disallow cplex 12.9 (caused segfaults in tests)
416- if [[ ${{matrix.python}} =~ 3.1[34] ]]; then
417- CPLEX='cplex>=12.10,<22.1.2|>22.1.2.1'
418- else
419- CPLEX='cplex>=12.10'
420- fi
407+ CPLEX='cplex>=12.10'
421408 # xpress.init() (xpress 9.5.1 from conda) hangs indefinitely
422409 # on GHA/Windows under Python 3.10 and 3.11. Exclude that
423410 # release on that platform.
0 commit comments