From 52969f7f7b0e32ce4a184d8391f406fd5b11d917 Mon Sep 17 00:00:00 2001 From: Mark Turner <64978342+Opt-Mucca@users.noreply.github.com> Date: Fri, 13 Sep 2024 12:16:42 +0200 Subject: [PATCH] Change min requirement again SCIP version is returning conflicting information. Update to 9.0.1 requirement (identical to 9.1.0) --- src/pyscipopt/scip.pxi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pyscipopt/scip.pxi b/src/pyscipopt/scip.pxi index 9d727b224..3854d2956 100644 --- a/src/pyscipopt/scip.pxi +++ b/src/pyscipopt/scip.pxi @@ -38,8 +38,8 @@ include "nodesel.pxi" # recommended SCIP version; major version is required MAJOR = 9 -MINOR = 1 -PATCH = 0 +MINOR = 0 +PATCH = 1 # for external user functions use def; for functions used only inside the interface (starting with _) use cdef # todo: check whether this is currently done like this