From edb1afd0490d202d78eb0e8a275fef72077a3eae Mon Sep 17 00:00:00 2001 From: Adam Cozzette Date: Mon, 6 Nov 2023 14:42:44 -0800 Subject: [PATCH] Move python/BUILD to python/BUILD.bazel (#14658) This should address the issue in #14600 by avoiding a conflict on with the `build` directory created by setup.py on a case-insensitive filesystem. Closes #14600. PiperOrigin-RevId: 579859556 --- python/{BUILD => BUILD.bazel} | 0 python/build_targets.bzl | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename python/{BUILD => BUILD.bazel} (100%) diff --git a/python/BUILD b/python/BUILD.bazel similarity index 100% rename from python/BUILD rename to python/BUILD.bazel diff --git a/python/build_targets.bzl b/python/build_targets.bzl index 91c8dfb37ea35..fff32b4a5b6f6 100644 --- a/python/build_targets.bzl +++ b/python/build_targets.bzl @@ -456,7 +456,7 @@ def build_targets(name): "google/protobuf/pyext/*.cc", "google/protobuf/pyext/*.h", ]) + [ - "BUILD", + "BUILD.bazel", "MANIFEST.in", "README.md", "build_targets.bzl",