Skip to content

Commit a1036f4

Browse files
committed
made the intel-cmplr-lib-rt dependency optional, because it does not work with github actions on alpine linux
1 parent 877fe04 commit a1036f4

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

moptipy/evaluation/selector.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -683,6 +683,8 @@ def select(self,
683683
return None
684684
min_set_len = sl
685685

686+
logger(f"Get {min_set_len} seeds per instance/algorithm/objective/"
687+
f"encoding combination.")
686688
use_seeds: list[list[int]] = [
687689
sorted(st)[:min_set_len] for st in inst_seeds]
688690
logger(f"Found {len(use_seeds)} seeds to use.")

moptipy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from typing import Final
33

44
#: the version string of `moptipy`
5-
__version__: Final[str] = "0.9.171"
5+
__version__: Final[str] = "0.9.172"

setup.cfg

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ project_urls =
7575
include_package_data = True
7676
install_requires =
7777
cmaes >= 0.12.0
78-
intel-cmplr-lib-rt >= 2025.3.2
7978
numpy >= 2.3.5
8079
numba >= 0.63.1
8180
matplotlib >= 3.10.8
@@ -86,6 +85,10 @@ packages = find:
8685
python_requires = >= 3.12
8786
zip_safe = False
8887

88+
[options.extras_require]
89+
performance =
90+
intel-cmplr-lib-rt >= 2025.3.2
91+
8992
[options.package_data]
9093
moptipy = py.typed
9194
moptipy.examples.jssp = *.txt

0 commit comments

Comments
 (0)