Skip to content

Commit

Permalink
remove higher minizinc requirement, was for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Wout4 committed Mar 25, 2024
1 parent 42c806c commit fbebfda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpmpy/solvers/minizinc.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def supported():
import minizinc
from minizinc import default_driver
version_tuple = (2, 8, 0) # minimum required version
if default_driver.parsed_version >= (2, 8, 3):
if default_driver.parsed_version >= version_tuple:
return True
else:
version = str(version_tuple[0])
Expand Down

0 comments on commit fbebfda

Please sign in to comment.