diff --git a/model_development_python.md b/model_development_python.md index 64da7630aad77871bf9e0eaf30f01f904d198b75..b442df89bee53108bd3c54725b64de6707f1fd0f 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.