Python requirements and Docker version upgrades (#826)

v3.0.0: Python, Django, Celery and other version upgrades
This commit is contained in:
Markos Gogoulos
2023-07-03 13:40:39 +03:00
committed by GitHub
parent 487e098b96
commit 029665145e
17 changed files with 140 additions and 60 deletions

View File

@ -485,3 +485,5 @@ if GLOBAL_LOGIN_REQUIRED:
r'/accounts/confirm-email/.*/$',
r'/api/v[0-9]+/',
]
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'

View File

@ -1,7 +1,7 @@
import debug_toolbar
from django.conf.urls import include, re_path
from django.conf.urls import include
from django.contrib import admin
from django.urls import path
from django.urls import path, re_path
from django.views.generic.base import TemplateView
from drf_yasg import openapi
from drf_yasg.views import get_schema_view