From 9f015bbd24352670b613006a32b2fc549f73994e Mon Sep 17 00:00:00 2001 From: Michael Fladischer Date: Wed, 15 Apr 2020 20:59:33 +0200 Subject: [PATCH] Do not include .pyc artifacts in source tarball Those files should not be shipped in the source tarball. The last release 4.0.30 had three of those files: wget -q -O - https://files.pythonhosted.org/packages/81/0d/bb08bb16c97765244791c73e49de9fd4c24bb3ef00313aed82e5640dee5d/pyodbc-4.0.30.tar.gz |tar tz |grep '.pyc$' pyodbc-4.0.30/tests2/testutils.pyc pyodbc-4.0.30/tests2/pgtests.pyc pyodbc-4.0.30/tests3/testutils.pyc --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index ea7fb2b5..ee21148f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ +global-exclude *.py include src/*.h include src/*.cpp include tests2/*