Files
mongo/buildscripts/bazel_rules_mongo/utils/BUILD.bazel
Trevor Guidry dcb8f27db8 SERVER-117833: make bazel format and lint smarter at picking the correct remote (#47000)
GitOrigin-RevId: 3cac21d8bcfb675071c7ec7fc819e71c507209f4
2026-01-27 17:24:16 +00:00

14 lines
287 B
Python

load("@poetry//:dependencies.bzl", "dependency")
exports_files(["evergreen_git.py"])
py_library(
name = "evergreen_git",
srcs = ["evergreen_git.py"],
visibility = ["//visibility:public"],
deps = [
dependency("pyyaml"),
dependency("gitpython"),
],
)