File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 12
12
strategy :
13
13
matrix :
14
14
python-version : ["3.7", "3.10", "pypy3.7"]
15
+ minizinc-version : ["2.7.0"]
15
16
16
17
env :
17
- MINIZINC_URL : https://github.com/MiniZinc/MiniZincIDE/releases/download/2.6.4 /MiniZincIDE-2.6.4 -x86_64.AppImage
18
+ MINIZINC_URL : https://github.com/MiniZinc/MiniZincIDE/releases/download/${{ matrix.minizinc-version }} /MiniZincIDE-${{ matrix.minizinc-version }} -x86_64.AppImage
18
19
steps :
19
20
- uses : actions/checkout@v3
20
21
with :
Original file line number Diff line number Diff line change @@ -9,10 +9,15 @@ this project adheres to `Semantic Versioning <https://semver.org/>`_.
9
9
Unreleased _
10
10
------------
11
11
12
+ Changed
13
+ ^^^^^^^
14
+
15
+ - Minimum supported version of MiniZinc has increased from 2.5.0 to 2.5.4.
16
+
12
17
Fixed
13
18
^^^^^
14
19
15
- - Ensure time events send using the json stream are parsed as ``timedelta ``
20
+ - Ensure time events send using the JSON stream are parsed as ``timedelta ``
16
21
objects.
17
22
- Pass JSON definitions in using JSON instead of generated DZN files..
18
23
Original file line number Diff line number Diff line change 22
22
from .solver import Solver
23
23
24
24
#: MiniZinc version required by the python package
25
- CLI_REQUIRED_VERSION = (2 , 5 , 0 )
25
+ CLI_REQUIRED_VERSION = (2 , 5 , 4 )
26
26
#: Default locations on MacOS where the MiniZinc packaged release would be installed
27
27
MAC_LOCATIONS = [
28
28
str (Path ("/Applications/MiniZincIDE.app/Contents/Resources" )),
You can’t perform that action at this time.
0 commit comments