From 596862f8b5f7103a46f9cdd6e77074ec8a351ddf Mon Sep 17 00:00:00 2001 From: JP-Ellis Date: Tue, 7 Dec 2021 10:31:40 +1100 Subject: [PATCH] [Python] Add poetry.lock Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. This is especially recommended for binary packages to ensure reproducibility, and is more commonly ignored for libraries. This is taken from https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control --- Python.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 92ff2c4b..a13ea059 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -94,6 +94,13 @@ ipython_config.py # install all needed dependencies. #Pipfile.lock +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + # PEP 582; used by e.g. github.com/David-OConnor/pyflow __pypackages__/