Skip to content

Commit 0bd3358

Browse files
coroaFabianHofmann
authored andcommitted
fix: blacklist highs 1.14.0 (#654)
* fix: blacklist highs 1.14.0, relax python constraints * Update release_notes.rst * fix: temporarily constrain xarray * fix: fix types in expressions.merge * fix: more types problems * fix: rely on issubclass
1 parent ccecab6 commit 0bd3358

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

doc/release_notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Version 0.6.7
66

77
* Fix Xpress IIS label mapping for masked constraints and add a regression test for matching infeasible coordinates.
88
* Use ``xarray.Dataset.copy`` instead of constructor for compatibility with the latest xarray version.
9+
* Blacklist highspy 1.14.0 which produces wrong results due to broken presolve and crashes on Windows (`HiGHS#2964 <https://github.com/ERGO-Code/HiGHS/issues/2964>`_).
910

1011

1112
Version 0.6.6

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies = [
3131
"bottleneck",
3232
"toolz",
3333
"numexpr",
34-
"xarray>=2024.2.0",
34+
"xarray>=2024.2.0,<2026.4",
3535
"dask>=0.18.0",
3636
"polars>=1.31.1",
3737
"tqdm",
@@ -76,13 +76,13 @@ dev = [
7676
]
7777
solvers = [
7878
"gurobipy",
79-
"highspy>=1.5.0; python_version < '3.12'",
80-
"highspy>=1.7.1; python_version >= '3.12'",
81-
"cplex; platform_system != 'Darwin' and python_version < '3.12'",
79+
"highspy>=1.5.0,!=1.14.0; python_version < '3.12'",
80+
"highspy>=1.7.1,!=1.14.0; python_version >= '3.12'",
81+
"cplex; platform_system != 'Darwin'",
8282
"mosek",
83-
"mindoptpy; python_version < '3.12'",
83+
"mindoptpy",
8484
"coptpy!=7.2.1",
85-
"xpress; platform_system != 'Darwin' and python_version < '3.11'",
85+
"xpress; platform_system != 'Darwin'",
8686
"pyscipopt; platform_system != 'Darwin'",
8787
"knitro>=15.1.0",
8888
# "cupdlpx>=0.1.2", pip package currently unstable

0 commit comments

Comments
 (0)