From eb0ed1823228fb919266474adc1d9dd6bc277367 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 2 Sep 2024 14:26:15 +0200 Subject: [PATCH] Include entire setuptools/_distutils/_vendor/packaging-24.0.dist-info in sdist Fixes https://github.com/pypa/setuptools/issues/4622 Fixup of https://github.com/pypa/setuptools/pull/4485 --- MANIFEST.in | 1 + newsfragments/4622.bugfix.rst | 1 + 2 files changed, 2 insertions(+) create mode 100644 newsfragments/4622.bugfix.rst diff --git a/MANIFEST.in b/MANIFEST.in index 0643e7ee2d..791ab8d352 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,6 +3,7 @@ recursive-include tests *.py recursive-include setuptools/tests *.html recursive-include docs *.py *.txt *.rst *.conf *.css *.css_t Makefile indexsidebar.html recursive-include setuptools/_vendor * +recursive-include setuptools/_distutils/_vendor * recursive-include pkg_resources *.py *.txt recursive-include pkg_resources/tests/data * recursive-include tools * diff --git a/newsfragments/4622.bugfix.rst b/newsfragments/4622.bugfix.rst new file mode 100644 index 0000000000..fb83eacb35 --- /dev/null +++ b/newsfragments/4622.bugfix.rst @@ -0,0 +1 @@ +Include all vendored files from distutils in the sdist as well.