Fix the exclusion of __pycache__ directories
Change-Id: I8571a96fcdfc4509d6f671f6ab42469f34c146f1
diff --git a/BUILD b/BUILD
index d14a9ce..82a7d9f 100644
--- a/BUILD
+++ b/BUILD
@@ -30,7 +30,7 @@
include = ["**"],
exclude = [
"**/*.pyc",
- "lib/python3.11/__pycache__/**",
+ "lib/python3.11/**/__pycache__/**",
],
),
)
@@ -40,7 +40,7 @@
srcs = glob(
include = ["lib/python3.11/**"],
exclude = [
- "lib/python3.11/__pycache__/**",
+ "lib/python3.11/**/__pycache__/**",
"lib/python3.11/**/*.pyc",
"lib/python3.11/test/**",
"lib/python3.11/unittest/**",