Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions theme/__init__.py
Original file line number Diff line number Diff line change
@@ -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"

Check warning on line 8 in theme/__init__.py

View check run for this annotation

Codecov / codecov/patch

theme/__init__.py#L8

Added line #L8 was not covered by tests
except ImportError:
pass