diff --git a/setup.py b/setup.py index 99a8b0b..6aefddf 100644 --- a/setup.py +++ b/setup.py @@ -3,19 +3,19 @@ def get_install_requires(): install_requires = [ - 'Django>=3,<5', - 'django-jsoneditor>0.1,<=0.2', + "Django>=3,<6", + "django-jsoneditor>0.1,<=0.2", ] try: import importlib except ImportError: - install_requires.append('importlib') + install_requires.append("importlib") try: from collections import OrderedDict except ImportError: - install_requires.append('ordereddict') + install_requires.append("ordereddict") return install_requires diff --git a/theme/__init__.py b/theme/__init__.py index 0138f30..2f7dbfc 100644 --- a/theme/__init__.py +++ b/theme/__init__.py @@ -1,10 +1,10 @@ -__version__ = '0.0.13' +__version__ = "0.0.14" # set default_app_config when using django earlier than 3.2 try: import django if django.VERSION < (3, 2): - default_app_config = 'theme.apps.SurfaceThemeConfig' + default_app_config = "theme.apps.SurfaceThemeConfig" except ImportError: pass