summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmre Kultursay <emrekultursay@google.com>2021-08-23 10:36:31 -0700
committerEmre Kultursay <emrekultursay@google.com>2021-08-23 10:37:52 -0700
commit07f178f3d0fe8c47bcafbb95f0ef46a226b0abeb (patch)
treeb8e13d70a566168ce48ffdce9737d33d7f1e84f8
parentc94fb84b6771f0ce2d5f4813fd03c94a1ddde661 (diff)
downloadlinux-x86-07f178f3d0fe8c47bcafbb95f0ef46a226b0abeb.tar.gz
Update bundle rule to point to Python 3.9
Bug: 197494658 Test: manual; test_studio Change-Id: I7859bf54baf5f6aa50278145d16ce6dcd9c7f47d
-rw-r--r--BUILD26
1 files changed, 13 insertions, 13 deletions
diff --git a/BUILD b/BUILD
index abae31f..c2cfb75 100644
--- a/BUILD
+++ b/BUILD
@@ -8,20 +8,20 @@ filegroup(
filegroup(
name = "linux-x86-bundle",
srcs = glob(
- include = ["lib/python3.8/**"],
+ include = ["lib/python3.9/**"],
exclude = [
- "lib/python3.8/test/**",
- "lib/python3.8/unittest/**",
- "lib/python3.8/config/**",
- "lib/python3.8/distutils/**",
- "lib/python3.8/idlelib/**",
- "lib/python3.8/lib2to3/**",
- "lib/python3.8/plat-linux2/**",
- "lib/python3.8/bsddb/test/**",
- "lib/python3.8/ctypes/test/**",
- "lib/python3.8/email/test/**",
- "lib/python3.8/lib-tk/test/**",
- "lib/python3.8/sqlite3/test/**",
+ "lib/python3.9/test/**",
+ "lib/python3.9/unittest/**",
+ "lib/python3.9/config/**",
+ "lib/python3.9/distutils/**",
+ "lib/python3.9/idlelib/**",
+ "lib/python3.9/lib2to3/**",
+ "lib/python3.9/plat-linux2/**",
+ "lib/python3.9/bsddb/test/**",
+ "lib/python3.9/ctypes/test/**",
+ "lib/python3.9/email/test/**",
+ "lib/python3.9/lib-tk/test/**",
+ "lib/python3.9/sqlite3/test/**",
],
),
)