From 99e18ff3e9b8ab0cc2779c352dace32151f865c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 3 Mar 2026 11:36:19 +0100 Subject: [PATCH] Fix wrongly installing `testing` directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The fix for #655 introduced a regression: the package now installs a `/usr/testing` directory. Fix the issue correctly by adding the file to the source distribution via `MANIFEST.in`. Signed-off-by: Michał Górny --- MANIFEST.in | 1 + setup.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 3d26d254..ef4d68ce 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,6 +6,7 @@ include CHANGES.md include Makefile include setup.py include setup.cfg +include tox.ini include bin/markdown2 include test/api.doctests diff --git a/setup.py b/setup.py index 935eae0c..05dba326 100755 --- a/setup.py +++ b/setup.py @@ -49,7 +49,6 @@ platforms=["any"], py_modules=["markdown2"], package_dir={"": "lib"}, - data_files=[("testing", ["tox.ini"])], entry_points={ "console_scripts": [ "markdown2 = markdown2:main"