We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb4a9be commit d2ce174Copy full SHA for d2ce174
packages/gapic-generator/rules_python_gapic/py_gapic_pkg.bzl
@@ -25,7 +25,7 @@ def _py_gapic_src_pkg_impl(ctx):
25
elif f.extension in ("srcjar", "jar", "zip"):
26
srcjar_srcs.append(f)
27
# Exclude source files and files for external packages
28
- elif f.extension in ("py") and not f.is_source and 'external' not in f.path:
+ elif f.extension in ("py", "pyi") and not f.is_source and 'external' not in f.path:
29
py_srcs.append(f)
30
31
paths = construct_package_dir_paths(ctx.attr.package_dir, ctx.outputs.pkg, ctx.label.name)
0 commit comments