Browse Source

Relax django-taggit dependency to allow 5.0 (#11363)

Sylvain Fankhauser 1 year ago
parent
commit
b62d043f70
3 changed files with 3 additions and 1 deletions
  1. 1 0
      CHANGELOG.txt
  2. 1 0
      docs/releases/6.0.md
  3. 1 1
      setup.py

+ 1 - 0
CHANGELOG.txt

@@ -81,6 +81,7 @@ Changelog
  * Maintenance: Refactor form pages listing view to use generic IndexView (Sage Abdullah)
  * Maintenance: Update Stylelint, our linting configuration, Sass, and related code changes (LB (Ben) Johnston)
  * Maintenance: Simplify browserslist and browser support documentation (Thibaud Colas)
+ * Maintenance: Relax django-taggit dependency to allow 5.0 (Sylvain Fankhauser)
 
 
 5.2.2 (06.12.2023)

+ 1 - 0
docs/releases/6.0.md

@@ -112,6 +112,7 @@ The admin interface now supports right-to-left languages, such as Persian, Arabi
  * Refactor form pages listing view to use generic IndexView (Sage Abdullah)
  * Update Stylelint, our linting configuration, Sass, and related code changes (LB (Ben) Johnston)
  * Simplify browserslist and browser support documentation for maintainers (Thibaud Colas)
+ * Relax django-taggit dependency to allow 5.0 (Sylvain Fankhauser)
 
 ## Upgrade considerations - removal of deprecated features from Wagtail 4.2 - 5.1
 

+ 1 - 1
setup.py

@@ -22,7 +22,7 @@ install_requires = [
     "Django>=4.2,<6.0",
     "django-modelcluster>=6.1,<7.0",
     "django-permissionedforms>=0.1,<1.0",
-    "django-taggit>=2.0,<5.0",
+    "django-taggit>=2.0,<5.1",
     "django-treebeard>=4.5.1,<5.0",
     "djangorestframework>=3.11.1,<4.0",
     "django-filter>=23.3,<24",