From cbaaae189fd1509bd4415b94ed8eada44b42b8ee Mon Sep 17 00:00:00 2001 From: James Braza Date: Thu, 26 Sep 2024 14:34:37 -0700 Subject: [PATCH] chore: Filtering out `tests` from Python package (#1416) Fixes https://github.com/looker-open-source/sdk-codegen/issues/1197 --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index 7ce36c906..25155b09d 100644 --- a/python/setup.py +++ b/python/setup.py @@ -49,7 +49,7 @@ keywords=["Looker", "Looker API", "looker_sdk", "Looker API 4.0"], name=NAME, package_data={"looker_sdk": ["py.typed", "looker_sdk/looker-sample.ini"]}, - packages=find_packages(), + packages=find_packages(include=("looker_sdk",)), # restrict python to <=3.9.9 due to https://github.com/looker-open-source/sdk-codegen/issues/944 python_requires=">=3.6", url="https://pypi.python.org/pypi/looker_sdk",