Skip to content

Commit

Permalink
Update Python packages
Browse files Browse the repository at this point in the history
  • Loading branch information
dougpenny committed Aug 9, 2022
1 parent cf48e04 commit 0eaa7be
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
PRODUCTION=False

DJANGO_SECRET_KEY='''
ALLOWED_HOSTS=''
DJANGO_ALLOWED_HOSTS=''

# Database settings
POSTGRES_NAME=''
Expand Down
2 changes: 1 addition & 1 deletion config/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import logging.config


ALLOWED_HOSTS = [os.getenv('ALLOWED_HOSTS')]
ALLOWED_HOSTS = os.getenv("DJANGO_ALLOWED_HOSTS", "127.0.0.1,localhost").split(",")

DATABASES = {
'default': {
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
django==3.2.13
django==4.0.7
djangorestframework==3.13.1
django-auth-adfs==1.9.5
django-auth-adfs==1.10.0
psycopg2-binary==2.9.3
gunicorn==20.1.0
python-dotenv==0.20.0
reportlab==3.6.9
reportlab==3.6.11
XlsxWriter==3.0.3
django-constance[database]==2.8.0
django-constance[database]==2.9.0
mozilla-django-oidc==2.0.0
django-mathfilters==1.0.0
pypowerschool==0.1.7

0 comments on commit 0eaa7be

Please sign in to comment.