Skip to content

Commit 3d42581

Browse files
authored
Merge pull request #916 from jazzband/manifest-changes
Exclude docs, tests, and the sample project from the package
2 parents 764664f + ac87232 commit 3d42581

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.rst

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Changelog
33

44
(Unreleased)
55
~~~~~~~~~~~~
6+
* 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)
7+
68
* Added a management command (``remove_orphaned_tags``) to remove orphaned tags
79

810
6.0.0 (2024-07-27)

MANIFEST.in

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ include AUTHORS
22
include CHANGELOG.rst
33
include LICENSE
44
include README.rst
5-
include tox.ini
6-
recursive-include docs *.py *.rst
5+
include setup.cfg
6+
include setup.py
7+
recursive-include taggit *.py
78
recursive-include taggit/locale *.mo *.po
8-
recursive-include tests *.html *.py
9+
prune tests
10+
prune sample_taggit
11+
prune docs

0 commit comments

Comments
 (0)