From 04397d4c773dc10bdca021fd1ac7d45de9ee4639 Mon Sep 17 00:00:00 2001 From: Mike Kruskal Date: Fri, 8 Mar 2024 14:03:21 -0800 Subject: [PATCH] Exclude checked-in descriptor gencode from source wheels. PiperOrigin-RevId: 614038432 --- upb/reflection/BUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/upb/reflection/BUILD b/upb/reflection/BUILD index 9b5fd88aa9..21aea85781 100644 --- a/upb/reflection/BUILD +++ b/upb/reflection/BUILD @@ -221,7 +221,10 @@ filegroup( "**/*.h", "**/*.hpp", ], - exclude = ["stage0/**"], + exclude = [ + "stage0/**", + "cmake/**", + ], ), visibility = [ "//python/dist:__pkg__",