Skip to content

Commit

Permalink
fix: Fix bad python package exclude (#1521)
Browse files Browse the repository at this point in the history
The original exclude only included the `looker_sdk` folder. Afaict based
off other examples, we should be using exclude.

Confirmed this fixes
#1518 locally.
  • Loading branch information
jeremytchang authored Oct 21, 2024
1 parent 87b0976 commit 5afd34b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(include=("looker_sdk",)),
packages=find_packages(exclude=("tests",)),
# 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",
Expand Down

0 comments on commit 5afd34b

Please sign in to comment.