From e3ccbd04c0d8e83c37aaa2e3deb9a3af307d8cef Mon Sep 17 00:00:00 2001 From: Tor-Einar Skog <tor-einar.skog@nibio.no> Date: Tue, 28 Feb 2023 10:05:23 +0100 Subject: [PATCH] Depend on latest vipscore-python-common --- model_development_python.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/model_development_python.md b/model_development_python.md index 64da763..b442df8 100644 --- a/model_development_python.md +++ b/model_development_python.md @@ -110,7 +110,7 @@ dependencies = [ "pydantic", "pytz", "pandas", - "vipscore_common @ git+https://gitlab.nibio.no/VIPS/vipscore-python-common.git@0.2.4" + "vipscore_common @ git+https://gitlab.nibio.no/VIPS/vipscore-python-common.git" ] requires-python = ">=3.9" @@ -119,7 +119,7 @@ requires-python = ">=3.9" dev = ["pytest"] ``` -**NOTE: If you update the vipscore_common dependency in your .toml file, make sure to run `pip install -e .` again to get the update.** + ### Make the package editable locally Create and activate a Python virtualenv for this project. This can be done outside or inside the project folder, just make sure that your IDE knows where to find it. If you create it inside the folder, the IDE may autodiscover it and suggest that it will use it as the default virtualenv in this project. -- GitLab