From b666222ce4ef7cd3d941aa5a7c4413cca4d3751d Mon Sep 17 00:00:00 2001 From: Dhruv Shetty Date: Mon, 28 Nov 2022 23:02:29 +0100 Subject: [PATCH] Change django_python dependency --- requirements.txt | 1 + settings.py | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 7f1ff4b..9c019bc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -20,6 +20,7 @@ django-extensions==3.2.1 django-extra-views==0.14.0 django-haystack==3.2.1 django-heroku==0.3.1 +django-on-heroku==1.1.2 -e git+https://github.com/django-oscar/django-oscar.git@3dee0ae8fbf017867cc82cf1e30750ebeaabcb5f#egg=django_oscar django-phonenumber-field==6.4.0 django-redis==5.2.0 diff --git a/settings.py b/settings.py index cd57a79..0f429cf 100644 --- a/settings.py +++ b/settings.py @@ -1,9 +1,11 @@ import os import environ import oscar -import django_heroku +import django_on_heroku +# import django_heroku -django_heroku.settings(locals()) +# django_heroku.settings(locals()) +django_on_heroku.settings(locals()) env = environ.Env()