From c29e8c9357c720fd919cb86bceda6285712a504e Mon Sep 17 00:00:00 2001 From: Evan Flynn Date: Fri, 26 Jul 2024 12:30:40 -0700 Subject: [PATCH] Add missing pyyaml dep to repos_lock.update Signed-off-by: Evan Flynn --- repos/config/detail/BUILD.bazel | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/repos/config/detail/BUILD.bazel b/repos/config/detail/BUILD.bazel index 12caae2..21d32d0 100644 --- a/repos/config/detail/BUILD.bazel +++ b/repos/config/detail/BUILD.bazel @@ -11,7 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - +load("@python_deps//:requirements.bzl", "requirement") load("@ros2_config//:repos_lock_file.bzl", "REPOS_LOCK_FILE") py_binary( @@ -20,5 +20,6 @@ py_binary( main = "lock_repos.py", data = ["@ros2//:ros2.repos", REPOS_LOCK_FILE], args = ["$(execpath @ros2//:ros2.repos)", "$(execpath {})".format(REPOS_LOCK_FILE)], + deps = [requirement("pyyaml")], visibility = ["//visibility:public"], )