From 103210e6835ca9f6ffbe76f72a79f27e7810dd09 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Mon, 28 Oct 2019 18:08:09 +0100 Subject: [PATCH] Explicitly include test/ in release tarballs. Closes GH-1384. distutils whitelists 'test/test*.py', which unfortunately excludes 'test/__init__.py', which is needed by supybot-test. --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 5321a298a..8869fb731 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,3 +3,4 @@ include README.md include Makefile include .travis.yml include requirements.txt +include test/*.py