Closed hariszaf closed 1 year ago
Hi there,
I am running python 3.10.6 and I just installed gurobi 10.
3.10.6
It is my belief that line 39 could lead to an issue as:
>>> import gurobipy >>> version = gurobipy.gurobi.version() >>> version (10, 0, 0)
and the if statement in the gurobi_interface.py script asks for:
gurobi_interface.py
if not (version[0] >= 9 and version[1] >= 5): raise RuntimeError()`
Hope this helps and apologies if I have missed something.
Definitely, you are right. Will submit a fix.
Glad it helped!
Hi there,
I am running python
3.10.6
and I just installed gurobi 10.It is my belief that line 39 could lead to an issue as:
and the if statement in the
gurobi_interface.py
script asks for:Hope this helps and apologies if I have missed something.