Skip to content

Commit

Permalink
[Python] Add poetry.lock
Browse files Browse the repository at this point in the history
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
  • Loading branch information
JP-Ellis authored Dec 6, 2021
1 parent c3c7af5 commit 596862f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Python.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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__/

Expand Down

0 comments on commit 596862f

Please sign in to comment.