Django 3.2.15

This commit is contained in:
Casper V. Kristensen 2022-08-13 14:15:19 +02:00
parent a3790bfc1a
commit 7d036584de
2 changed files with 8 additions and 8 deletions

View file

@ -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. # The application listed first has precedence. List django apps last to allow overriding.
INSTALLED_APPS = ( INSTALLED_APPS = (
# Local apps # Local apps
"drakul.authentication.apps.AuthenticationConfig", "drakul.authentication",
"drakul.base.apps.BaseConfig", "drakul.base",
"drakul.bank.apps.BankConfig", "drakul.bank",
"drakul.raids.apps.RaidsConfig", "drakul.raids",
"drakul.users.apps.UsersConfig", "drakul.users",
# Third party apps # Third party apps
"rest_framework", "rest_framework",

View file

@ -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 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 djangorestframework==3.13.1
django-crispy-forms==1.9.2 django-crispy-forms==1.14.0