diff options
author | David Robertson <davidr@element.io> | 2022-04-05 18:40:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-05 18:40:56 +0100 |
commit | 7ec9b06303e0f78ef4a82d804798a3826ddffca2 (patch) | |
tree | d03709d207f6275046a98735d18dc0d5e28ebaa2 /.gitignore | |
parent | Post 1.56.0 release tidy up (#12379) (diff) | |
download | synapse-7ec9b06303e0f78ef4a82d804798a3826ddffca2.tar.xz |
Poetry: initial pyproject.toml and poetry.lock (#12381)
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Co-authored-by: Brendan Abolivier <babolivier@matrix.org>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 61bbd2dfa0..c011cd27a4 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,10 @@ _trial_temp*/ .DS_Store __pycache__/ +# We do want the poetry lockfile. TODO: is there a good reason for ignoring +# '*.lock' above? If not, let's nuke it. +!poetry.lock + # stuff that is likely to exist when you run a server locally /*.db /*.log |