From c8d6af575ad27d34f801105d192181f4072d9740 Mon Sep 17 00:00:00 2001 From: Andrew Chen Wang <60190294+Andrew-Chen-Wang@users.noreply.github.com> Date: Mon, 23 Aug 2021 10:55:34 -0400 Subject: [PATCH] Bump cachalot version [ci skip] --- cachalot/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cachalot/__init__.py b/cachalot/__init__.py index 0d0c44c..826e376 100644 --- a/cachalot/__init__.py +++ b/cachalot/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 4, 2) +VERSION = (2, 4, 3) __version__ = ".".join(map(str, VERSION)) try: @@ -6,5 +6,5 @@ try: if DJANGO_VERSION < (3, 2): default_app_config = "cachalot.apps.CachalotConfig" -except ImportError: +except ImportError: # pragma: no cover default_app_config = "cachalot.apps.CachalotConfig"