Merge pull request #5018 from emanuelschuetze/update-requirements
Updated requirements
This commit is contained in:
commit
5e3a9e0943
@ -1,7 +1,6 @@
|
|||||||
import asyncio
|
import asyncio
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
from channels_redis.core import ConnectionPool
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
|
||||||
from . import logging
|
from . import logging
|
||||||
@ -14,6 +13,8 @@ try:
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
use_redis = False
|
use_redis = False
|
||||||
else:
|
else:
|
||||||
|
from channels_redis.core import ConnectionPool
|
||||||
|
|
||||||
# set use_redis to true, if there is a value for REDIS_ADDRESS in the settings
|
# set use_redis to true, if there is a value for REDIS_ADDRESS in the settings
|
||||||
redis_address = getattr(settings, "REDIS_ADDRESS", "")
|
redis_address = getattr(settings, "REDIS_ADDRESS", "")
|
||||||
use_redis = bool(redis_address)
|
use_redis = bool(redis_address)
|
||||||
|
@ -6,4 +6,4 @@ aioredis>=1.1.0,<1.3
|
|||||||
|
|
||||||
# Requirements for fast asgi server
|
# Requirements for fast asgi server
|
||||||
gunicorn>=19.9.0,<20
|
gunicorn>=19.9.0,<20
|
||||||
uvicorn>=0.3.2,<1.1
|
uvicorn>=0.9,<1.0
|
||||||
|
@ -15,3 +15,4 @@ PyPDF2>=1.26,<1.27
|
|||||||
roman>=2.0,<3.2
|
roman>=2.0,<3.2
|
||||||
setuptools>=29.0,<42.0
|
setuptools>=29.0,<42.0
|
||||||
typing_extensions>=3.6.6,<3.8
|
typing_extensions>=3.6.6,<3.8
|
||||||
|
websockets>=8.0,<9.0
|
Loading…
Reference in New Issue
Block a user