Updated requirements

This commit is contained in:
krateng 2023-10-25 14:51:32 +02:00
parent 93a371a2c2
commit 9fcdbf340c
3 changed files with 3 additions and 3 deletions

View File

@ -34,6 +34,6 @@ class Deezer(MetadataInterface):
self.delay += 1 self.delay += 1
# this is permanent (for the lifetime of the process) # this is permanent (for the lifetime of the process)
# but that's actually ok # but that's actually ok
# since hitting the rate limit means we are doing this to fast # since hitting the rate limit means we are doing this too fast
# and these requests arent really time sensitive # and these requests arent really time sensitive
raise RateLimitExceeded() raise RateLimitExceeded()

View File

@ -28,7 +28,7 @@ dependencies = [
"jinja2>=3.0.0", "jinja2>=3.0.0",
"lru-dict>=1.1.6", "lru-dict>=1.1.6",
"psutil>=5.8.0", "psutil>=5.8.0",
"sqlalchemy>=1.4", "sqlalchemy>=2.0",
"python-datauri>=1.1.0", "python-datauri>=1.1.0",
"requests>=2.27.1", "requests>=2.27.1",
"setuptools>68.0.0" "setuptools>68.0.0"

View File

@ -6,7 +6,7 @@ setproctitle>=1.1.10
jinja2>=3.0.0 jinja2>=3.0.0
lru-dict>=1.1.6 lru-dict>=1.1.6
psutil>=5.8.0 psutil>=5.8.0
sqlalchemy>=1.4 sqlalchemy>=2.0
python-datauri>=1.1.0 python-datauri>=1.1.0
requests>=2.27.1 requests>=2.27.1
setuptools>68.0.0 setuptools>68.0.0