From 3c811daee0a027b58298fdec00776d0add7d2888 Mon Sep 17 00:00:00 2001 From: Denis BOURGE Date: Sat, 13 Mar 2021 18:47:16 +0000 Subject: [PATCH] fix: remove sc suffix --- djcelery/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/djcelery/__init__.py b/djcelery/__init__.py index 33b433d3..13644a8f 100644 --- a/djcelery/__init__.py +++ b/djcelery/__init__.py @@ -6,7 +6,7 @@ import os import sys -VERSION = (4, 1, 0, 'sc') +VERSION = (4, 1, 0) __version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:]) __author__ = 'Ask Solem' __contact__ = 'ask@celeryproject.org'