Add missing dependencies

This commit is contained in:
Andreas Zweili 2023-12-29 14:07:48 +01:00
parent 6f9bf4573e
commit a387e3efb0
2 changed files with 33 additions and 1 deletions

33
poetry.lock generated
View File

@ -256,6 +256,26 @@ files = [
{file = "docstring_to_markdown-0.13-py3-none-any.whl", hash = "sha256:aa487059d0883e70e54da25c7b230e918d9e4d40f23d6dfaa2b73e4225b2d7dd"},
]
[[package]]
name = "fakeredis"
version = "2.20.1"
description = "Python implementation of redis API, can be used for testing purposes."
optional = false
python-versions = ">=3.7,<4.0"
files = [
{file = "fakeredis-2.20.1-py3-none-any.whl", hash = "sha256:d1cb22ed76b574cbf807c2987ea82fc0bd3e7d68a7a1e3331dd202cc39d6b4e5"},
{file = "fakeredis-2.20.1.tar.gz", hash = "sha256:a2a5ccfcd72dc90435c18cde284f8cdd0cb032eb67d59f3fed907cde1cbffbbd"},
]
[package.dependencies]
redis = ">=4"
sortedcontainers = ">=2,<3"
[package.extras]
bf = ["pybloom-live (>=4.0,<5.0)"]
json = ["jsonpath-ng (>=1.6,<2.0)"]
lua = ["lupa (>=1.14,<3.0)"]
[[package]]
name = "flask"
version = "3.0.0"
@ -706,6 +726,17 @@ async-timeout = {version = ">=4.0.2", markers = "python_full_version <= \"3.11.2
hiredis = ["hiredis (>=1.0.0)"]
ocsp = ["cryptography (>=36.0.1)", "pyopenssl (==20.0.1)", "requests (>=2.26.0)"]
[[package]]
name = "sortedcontainers"
version = "2.4.0"
description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set"
optional = false
python-versions = "*"
files = [
{file = "sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0"},
{file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"},
]
[[package]]
name = "tomlkit"
version = "0.12.3"
@ -822,4 +853,4 @@ watchdog = ["watchdog (>=2.3)"]
[metadata]
lock-version = "2.0"
python-versions = "^3.11"
content-hash = "74fd7af0a3f3e9c9ccbe4fa052e36da9692d121fa22b4153e525281bb15d03ed"
content-hash = "979983fe2bdabdba06acd9c8456141e9da18c78b531a49d7195861f0c5d35f43"

View File

@ -27,6 +27,7 @@ pytest = "^7.4.3"
pytest-cov = "^4.1.0"
mypy = "^1.8.0"
pylint = "^3.0.3"
fakeredis = "^2.20.1"
[build-system]
requires = ["poetry-core"]