From c24835543286b5d41ad923dcc941beea1d0a4dc2 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Thu, 27 Jun 2024 09:02:49 +0200 Subject: [PATCH] [libs.common.scripts.utils] Give more options to fix version warning --- src/mednet/libs/common/scripts/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mednet/libs/common/scripts/utils.py b/src/mednet/libs/common/scripts/utils.py index 35c47787..66381e96 100644 --- a/src/mednet/libs/common/scripts/utils.py +++ b/src/mednet/libs/common/scripts/utils.py @@ -161,7 +161,8 @@ def execution_metadata() -> dict[str, int | float | str | dict[str, str] | list[ f"({current_version}) and actual version returned by " f"versioningit ({actual_version}). This typically happens " f"when you commit changes locally and do not re-install the " - f"package. Run `pip install -e .` or equivalent to fix this.", + f"package. Run `pixi install`, `pip install -e .` or equivalent " + f"to fix this.", ) except Exception as e: # not in a git repo? -- GitLab