File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
djangocms_attributes_field Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 22Changelog
33=========
44
5+ 4.1.1 (2025-08-06)
6+ ==================
7+
8+ * fix: Remove reference to sunset LooseVersion of distutils
9+
5104.1.0 (2025-07-15)
611==================
712
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ You can run tests by executing::
174174.. |pypi | image :: https://badge.fury.io/py/djangocms-attributes-field.svg
175175 :target: http://badge.fury.io/py/djangocms-attributes-field
176176.. |coverage | image :: https://codecov.io/gh/django-cms/djangocms-attributes-field/branch/master/graph/badge.svg
177- :target: https://codecov.io/gh/divio /djangocms-attributes-field
177+ :target: https://codecov.io/gh/django-cms /djangocms-attributes-field
178178
179179.. |python | image :: https://img.shields.io/pypi/pyversions/djangocms-attributes-field
180180 :alt: PyPI - Python Version
Original file line number Diff line number Diff line change 1- __version__ = '4.1.0 '
1+ __version__ = '4.1.1 '
Original file line number Diff line number Diff line change 99from django .utils .html import conditional_escape , mark_safe
1010from django .utils .translation import gettext_lazy as _
1111
12- from .utils import DJANGO_2_2
1312from .widgets import AttributesWidget
1413
1514regex_key_validator = RegexValidator (regex = r'^[a-z][-a-z0-9_:]*\Z' ,
Original file line number Diff line number Diff line change 1- from distutils .version import LooseVersion
21from platform import python_version
32
43from django import get_version
54
65DJANGO_VERSION = get_version ()
76PYTHON_VERSION = python_version ()
8-
9- # These means "less than or equal to DJANGO_FOO_BAR"
10- DJANGO_2_2 = LooseVersion (DJANGO_VERSION ) < LooseVersion ('3.0' )
You can’t perform that action at this time.
0 commit comments