Skip to content

Commit 6d9cd4c

Browse files
committed
Update MiniZinc version in the CI to 2.7.0
1 parent 5af89ac commit 6d9cd4c

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ jobs:
1212
strategy:
1313
matrix:
1414
python-version: ["3.7", "3.10", "pypy3.7"]
15+
minizinc-version: ["2.7.0"]
1516

1617
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
1819
steps:
1920
- uses: actions/checkout@v3
2021
with:

CHANGELOG.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,15 @@ this project adheres to `Semantic Versioning <https://semver.org/>`_.
99
Unreleased_
1010
------------
1111

12+
Changed
13+
^^^^^^^
14+
15+
- Minimum supported version of MiniZinc has increased from 2.5.0 to 2.5.4.
16+
1217
Fixed
1318
^^^^^
1419

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``
1621
objects.
1722
- Pass JSON definitions in using JSON instead of generated DZN files..
1823

src/minizinc/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from .solver import Solver
2323

2424
#: MiniZinc version required by the python package
25-
CLI_REQUIRED_VERSION = (2, 5, 0)
25+
CLI_REQUIRED_VERSION = (2, 5, 4)
2626
#: Default locations on MacOS where the MiniZinc packaged release would be installed
2727
MAC_LOCATIONS = [
2828
str(Path("/Applications/MiniZincIDE.app/Contents/Resources")),

0 commit comments

Comments
 (0)