20 lines
377 B
Python
20 lines
377 B
Python
load("@poetry//:dependencies.bzl", "dependency")
|
|
|
|
py_library(
|
|
name = "patch_builds",
|
|
srcs = [
|
|
"change_data.py",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
dependency(
|
|
"structlog",
|
|
group = "evergreen",
|
|
),
|
|
dependency(
|
|
"gitpython",
|
|
group = "evergreen",
|
|
),
|
|
],
|
|
)
|