Django 3.2.15
This commit is contained in:
parent
a3790bfc1a
commit
7d036584de
|
@ -15,11 +15,11 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__fil
|
|||
# The application listed first has precedence. List django apps last to allow overriding.
|
||||
INSTALLED_APPS = (
|
||||
# Local apps
|
||||
"drakul.authentication.apps.AuthenticationConfig",
|
||||
"drakul.base.apps.BaseConfig",
|
||||
"drakul.bank.apps.BankConfig",
|
||||
"drakul.raids.apps.RaidsConfig",
|
||||
"drakul.users.apps.UsersConfig",
|
||||
"drakul.authentication",
|
||||
"drakul.base",
|
||||
"drakul.bank",
|
||||
"drakul.raids",
|
||||
"drakul.users",
|
||||
|
||||
# Third party apps
|
||||
"rest_framework",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Django==3.1.1
|
||||
Django==3.2.15
|
||||
psycopg2-binary>=2.5.4 # required by Django for PostgreSQL support: https://docs.djangoproject.com/en/2.2/ref/databases/#postgresql-notes
|
||||
djangorestframework==3.12.1
|
||||
django-crispy-forms==1.9.2
|
||||
djangorestframework==3.13.1
|
||||
django-crispy-forms==1.14.0
|
||||
|
|
Loading…
Reference in a new issue