Skip to content

Commit

Permalink
requirements: update dependency requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippKilian authored and liske committed Feb 16, 2024
1 parent 58bd0c3 commit a62229f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions b3lb/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# b3lb v3.1 - Delay update to Django 4.x because of dependencies
Django==3.2.19
PyGObject==3.44.1
aiohttp==3.8.4
boto3==1.26.163
Django==3.2.23
PyGObject==3.46.0
aiohttp==3.8.6
boto3==1.28.77
django-extensions==3.2.3
celery==5.3.1
celery==5.3.4
celery-singleton==0.3.1
django-cacheops==7.0.1
django-cacheops==7.0.2
django-db-file-storage==0.5.5
django-celery-admin==0.1
django-celery-beat==2.5.0
django-celery-results==2.5.1
django-environ==0.10.0
django-redis==5.3.0
django-storages==1.13.2
django-environ==0.11.2
django-redis==5.4.0
django-storages==1.14.2
intervaltree==3.1.0
psycopg2cffi==2.9.0
requests==2.31.0
uvicorn[standard]==0.22.0
uvicorn[standard]==0.23.2
xmltodict==0.13.0
4 changes: 2 additions & 2 deletions b3lb/rest/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
from rest.b3lb.utils import xml_escape
from rest.classes.statistics import MeetingStats
from rest.classes.storage import DBStorage
from storages.backends.s3boto3 import ClientError, S3Boto3Storage
from storages.backends.s3 import ClientError, S3Storage
from textwrap import wrap
from typing import Any, Dict
import rest.b3lb.constants as cst
Expand All @@ -53,7 +53,7 @@ def get_storage():
if settings.B3LB_RECORD_STORAGE == "local":
used_storage = FileSystemStorage()
elif settings.B3LB_RECORD_STORAGE == "s3":
used_storage = S3Boto3Storage()
used_storage = S3Storage()
used_storage.access_key = settings.B3LB_S3_ACCESS_KEY
used_storage.secret_key = settings.B3LB_S3_SECRET_KEY
used_storage.endpoint_url = settings.B3LB_S3_ENDPOINT_URL
Expand Down

0 comments on commit a62229f

Please sign in to comment.