From 47faecd7644964ab927f90b2905ea494da565a46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Wed, 24 Apr 2024 23:31:42 +0100 Subject: [PATCH] Ship testdata/ and tests/ in sdist. Fixes #1292 --- MANIFEST.in | 3 ++- NEWS | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 69e03ce9b..5a2b351fc 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -12,7 +12,8 @@ include dulwich/py.typed recursive-include docs conf.py *.txt Makefile make.bat recursive-include examples *.py recursive-include crates *.rs Cargo.toml -graft dulwich/tests/data +graft tests/ +graft testdata/ include tox.ini include dulwich.cfg include .testr.conf diff --git a/NEWS b/NEWS index 6f58a6ca0..87fd9843c 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,8 @@ * Ship ``Cargo.lock``. (Jelmer Vernooij, #1287) + * Ship ``tests/`` and ``testdata/`` in sdist. (Jelmer Vernooij, #1292) + 0.22.1 2024-04-23 * Handle alternate case for worktreeconfig setting (Will Shanks, #1285)