Skip to content

Commit

Permalink
Fix missing pyyaml requirement in bazel target (#854)
Browse files Browse the repository at this point in the history
This change explicitly declares pyyaml as a package dependency requirement to the merge py_binary target. This will fix the //specs:specs-web-config target in internal which is broken right now on master.

JIRA: INFRA-4606
  • Loading branch information
ahungrynacho authored Feb 23, 2023
1 parent 559ad63 commit b82ba46
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bazel/appengine/configtools/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
load("@enkit_pip_deps//:requirements.bzl", "requirement")

py_binary(
name = "merge",
srcs = [
"merge.py",
],
visibility = ["//visibility:public"],
deps = [
requirement("PyYAML"),
],
)

py_binary(
Expand Down

0 comments on commit b82ba46

Please sign in to comment.