Skip to content

Commit 7baae36

Browse files
authored
Remove unnecessary Django version check (django-compressor#1156)
Django 3.1 has been dropped.
1 parent ca1dd35 commit 7baae36

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

compressor/management/commands/compress.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,7 @@
3737
class Command(BaseCommand):
3838
help = "Compress content outside of the request/response cycle"
3939

40-
if django.VERSION >= (3, 2):
41-
requires_system_checks = []
42-
else:
43-
requires_system_checks = False
40+
requires_system_checks = []
4441

4542
def add_arguments(self, parser):
4643
parser.add_argument(

0 commit comments

Comments
 (0)