I am trying to solve an optimization problem in pyomo by using gurobipy. Given the size of the problem, I would like to set a time limit of 100 seconds as a termination criterion. Although I specified it in the solver options, as follows, it seems to be completely ignored.
opt = SolverFactory("gurobi", solver_io="python", maxTimeLimit=100)
results = opt.solve(model)