feat(poetry): add filelock

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-11-16 01:46:07 -08:00
parent cea9104efb
commit 40b21203ed
No known key found for this signature in database
GPG key ID: F7E46DED420788F3
2 changed files with 18 additions and 1 deletions

18
poetry.lock generated
View file

@ -300,6 +300,18 @@ python-versions = "*"
lxml = "*"
python-dateutil = "*"
[[package]]
name = "filelock"
version = "3.3.2"
description = "A platform independent file lock."
category = "main"
optional = false
python-versions = ">=3.6"
[package.extras]
docs = ["furo (>=2021.8.17b43)", "sphinx (>=4.1)", "sphinx-autodoc-typehints (>=1.12)"]
testing = ["covdefaults (>=1.2.0)", "coverage (>=4)", "pytest (>=4)", "pytest-cov", "pytest-timeout (>=1.4.2)"]
[[package]]
name = "flake8"
version = "4.0.1"
@ -1044,7 +1056,7 @@ h11 = ">=0.9.0,<1"
[metadata]
lock-version = "1.1"
python-versions = ">=3.9,<3.10"
content-hash = "6ab137fb829b2a6d49552c4864d00be04a2d58d80a872f3cd3b9e5cc67f95b9d"
content-hash = "ca42bd35717062d6784025ed3956423502ac66adba059ccc080bcaaa666651cd"
[metadata.files]
aiofiles = [
@ -1253,6 +1265,10 @@ fastapi = []
feedgen = [
{file = "feedgen-0.9.0.tar.gz", hash = "sha256:8e811bdbbed6570034950db23a4388453628a70e689a6e8303ccec430f5a804a"},
]
filelock = [
{file = "filelock-3.3.2-py3-none-any.whl", hash = "sha256:bb2a1c717df74c48a2d00ed625e5a66f8572a3a30baacb7657add1d7bac4097b"},
{file = "filelock-3.3.2.tar.gz", hash = "sha256:7afc856f74fa7006a289fd10fa840e1eebd8bbff6bffb69c26c54a0512ea8cf8"},
]
flake8 = [
{file = "flake8-4.0.1-py2.py3-none-any.whl", hash = "sha256:479b1304f72536a55948cb40a32dce8bb0ffe3501e26eaf292c7e60eb5e0428d"},
{file = "flake8-4.0.1.tar.gz", hash = "sha256:806e034dda44114815e23c16ef92f95c91e4c71100ff52813adf7132a6ad870d"},

View file

@ -85,6 +85,7 @@ Hypercorn = "^0.11.2"
mysql-connector = "^2.2.9"
prometheus-fastapi-instrumentator = "^5.7.1"
pytest-xdist = "^2.4.0"
filelock = "^3.3.2"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"