Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/cascade/executor/runner/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ def _parse_pip_install(pip_output: str) -> dict[str, Version]:


def _maybe_imported_version(mod_name: str) -> Version | None:
if mod_name in ("eccodes", "gribapi"):
# TODO presumably cacheable, unless None
if mod_name in ("eccodes", "gribapi", "mir-python"):
# the eccodes/gribapi __version__ is wrong, reporting that of eccodeslib
# => we must go to the importlib. This *invalidates* the post install
# check -- TODO after eccodes wheel fixed, remove this
Expand Down
Loading