Skip to content

Commit

Permalink
Fix missing dep (absl-py) for server
Browse files Browse the repository at this point in the history
  • Loading branch information
wwwillchen committed Jan 27, 2024
1 parent a62d449 commit bf55f44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mesop/server/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("//build_defs:defaults.bzl", "THIRD_PARTY_PY_FLASK", "py_library")
load("//build_defs:defaults.bzl", "THIRD_PARTY_PY_ABSL_PY", "THIRD_PARTY_PY_FLASK", "py_library")

package(
default_visibility = ["//build_defs:mesop_internal"],
Expand All @@ -11,7 +11,7 @@ py_library(
"//mesop/editor",
"//mesop/protos:ui_py_pb2",
"//mesop/utils",
] + THIRD_PARTY_PY_FLASK,
] + THIRD_PARTY_PY_ABSL_PY + THIRD_PARTY_PY_FLASK,
# Note: prod_server.py has a runtime dependency on
# //mesop/web/src/app/prod:web_package, so you must include it
# in the consuming py_binary's data attribute.
Expand Down

0 comments on commit bf55f44

Please sign in to comment.