From 1535f0655761232685f18fbe5e1aed7d6fc5d480 Mon Sep 17 00:00:00 2001 From: Raphael Gaschignard Date: Sun, 29 Sep 2024 18:03:01 +1000 Subject: [PATCH] Fix missing template file in packaging --- CHANGELOG.rst | 2 +- MANIFEST.in | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 71259e7d..eefdd7b8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -11,7 +11,7 @@ Changelog * Add a fallback for when multiple tags are found in case-insensitivity mode (the earliest by PK is returned) * Add a ``deduplicate_tags`` management command to remove duplicate tags based on case insensitivity. This feature is enabled when ``TAGGIT_CASE_INSENSITIVE`` is set to ``True`` in the settings. * We no longer package tests, docs, or the sample taggit app into the distributed wheels. While we believe this shouldn't affect anything for users of the library, please tell us if you find yourself hitting issues (like around import errors) - +* Fix missing template file for admin merge tag action 6.0.0 (2024-07-27) ~~~~~~~~~~~~~~~~~~ diff --git a/MANIFEST.in b/MANIFEST.in index 982a8e0e..be7c2174 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -5,6 +5,7 @@ include README.rst include setup.cfg include setup.py recursive-include taggit *.py +recursive-include taggit/templates *.html recursive-include taggit/locale *.mo *.po prune tests prune sample_taggit