Skip to content

Commit

Permalink
fix: use setuptools.find_namespace_packages
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea authored Nov 30, 2023
1 parent 8089b15 commit 45deb7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
# benchmarks, etc.
packages = [
package
for package in setuptools.PEP420PackageFinder.find()
for package in setuptools.find_namespace_packages()
if package.startswith("bigframes") or package.startswith("third_party")
]

Expand Down

0 comments on commit 45deb7e

Please sign in to comment.