From 63a197d420c25fc2b26c7b7ec18ae76dee2d0f23 Mon Sep 17 00:00:00 2001 From: Guangyang Li Date: Wed, 16 Sep 2026 23:03:38 -0400 Subject: [PATCH] Keep RELEASING.md out of the source distribution MANIFEST.in has `include *.md`, so the release note added in #70 started shipping inside the sdist. It documents how a release is cut from this repository, which is of no use to anyone unpacking the source distribution. Verified on a rebuilt sdist: RELEASING.md is gone, CHANGELOG.md, README.md and README_pypi.rst are all still there. --- MANIFEST.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index 9201b0f..811463d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,8 @@ include LICENSE include *.md +# RELEASING.md documents how a release is cut. That is for this repository, not for anyone +# unpacking the source distribution, so keep it out of the sdist. +exclude RELEASING.md include *.rst include requirements*.txt include pywaffle/py.typed