Skip to content

Commit

Permalink
Bump cachalot version [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Chen-Wang authored Aug 23, 2021
1 parent f7753ae commit c8d6af5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cachalot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
VERSION = (2, 4, 2)
VERSION = (2, 4, 3)
__version__ = ".".join(map(str, VERSION))

try:
from django import VERSION as DJANGO_VERSION

if DJANGO_VERSION < (3, 2):
default_app_config = "cachalot.apps.CachalotConfig"
except ImportError:
except ImportError: # pragma: no cover
default_app_config = "cachalot.apps.CachalotConfig"

0 comments on commit c8d6af5

Please sign in to comment.