Skip to content

Commit

Permalink
feat: update for Django 3.2 support
Browse files Browse the repository at this point in the history
Change-Id: I6533233e64ec8a2ddd42d7beaa19194c3c1be5b6
  • Loading branch information
Guillaume-sousa committed Oct 21, 2021
1 parent 6213a5e commit f078990
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions mdcs/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
}
}

DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'

MONGO_HOST = os.environ["MONGO_HOST"] if "MONGO_HOST" in os.environ else ""
MONGO_PORT = os.environ["MONGO_PORT"] if "MONGO_PORT" in os.environ else "27017"
MONGO_DB = os.environ["MONGO_DB"] if "MONGO_DB" in os.environ else ""
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
celery==4.4.7
kombu==4.6.11
Django==2.2.24
Django==3.2.*
mongoengine==0.23.0

0 comments on commit f078990

Please sign in to comment.