From 8de35759894d713b73f0a514b9cba017185b131d Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Mon, 11 Jan 2021 18:07:18 -0800 Subject: [PATCH] Exclude tests from package A global "tests" package was being installed by the wheel... Signed-off-by: Ben Firshman --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index a11895501..6be14af90 100644 --- a/python/setup.py +++ b/python/setup.py @@ -121,7 +121,7 @@ def install_egg_scripts(self, dist): license="Apache License 2.0", python_requires='>=3.6.0', install_requires=["googleapis-common-protos[grpc]>=1.0.0"], - packages=setuptools.find_packages(), + packages=setuptools.find_packages(exclude=["tests"]), package_data={'replicate': ['bin/replicate-shared']}, cmdclass={ 'bdist_wheel': bdist_wheel,