fix: disable broken redis

pull/21/head
Raphaël Vinot 2023-03-22 11:03:15 +01:00
parent 420484baa9
commit b614d9bd15
2 changed files with 6 additions and 6 deletions

10
poetry.lock generated
View File

@ -1438,18 +1438,18 @@ files = [
[[package]]
name = "redis"
version = "4.5.2"
version = "4.5.1"
description = "Python client for Redis database and key-value store"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "redis-4.5.2-py3-none-any.whl", hash = "sha256:4b12b3a1e9bfb43dc533330ec6d142329d0c27ea6bb6716a9d0389e8f2038a4e"},
{file = "redis-4.5.2.tar.gz", hash = "sha256:d8ae1a4f725eea6e3958411870fdf944c587b00ea12be28d3bd5575d8f26430c"},
{file = "redis-4.5.1-py3-none-any.whl", hash = "sha256:5deb072d26e67d2be1712603bfb7947ec3431fb0eec9c578994052e33035af6d"},
{file = "redis-4.5.1.tar.gz", hash = "sha256:1eec3741cda408d3a5f84b78d089c8b8d895f21b3b050988351e925faf202864"},
]
[package.dependencies]
async-timeout = {version = ">=4.0.2", markers = "python_version < \"3.11\""}
async-timeout = ">=4.0.2"
hiredis = {version = ">=1.0.0", optional = true, markers = "extra == \"hiredis\""}
[package.extras]
@ -1815,4 +1815,4 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more
[metadata]
lock-version = "2.0"
python-versions = "^3.8.1"
content-hash = "f95dcb32e2b710f33dcf9360d41724c2768d2ae3c95deda52e00720afc2fe440"
content-hash = "c701984d2331008bd4006c177d99444a3969b43346e3a8a6f7efe2817d3d72eb"

View File

@ -25,7 +25,7 @@ ssfetcher = "bin.ssfetcher:main"
[tool.poetry.dependencies]
python = "^3.8.1"
redis = {version = "^4.5.2", extras = ["hiredis"]}
redis = {version = "^4.5.1,!=4.5.2", extras = ["hiredis"]}
flask-restx = "^1.1.0"
gunicorn = "^20.1.0"
python-dateutil = "^2.8.2"