diff --git a/model_development_python.md b/model_development_python.md index 71165cda60654ec59342f4eaae7e77460707da84..64da7630aad77871bf9e0eaf30f01f904d198b75 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.1" + "vipscore_common @ git+https://gitlab.nibio.no/VIPS/vipscore-python-common.git@0.2.4" ] requires-python = ">=3.9" @@ -119,6 +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. @@ -152,7 +153,7 @@ class FungusPilosisFlavisModel(VIPSModel): COPYRIGHT = "(c) 2023 ACME Industries" ``` -Make sure you add the `__init__.py` file in the same folder as your module +**Make sure you add the `__init__.py` file in the same folder as your module** #### Create the method for finding when 500 day degrees has been passed To find out when 500 day degrees (since some date) have passed, you need