Update dependency on tkinter.

PiperOrigin-RevId: 503401013
This commit is contained in:
Yilei Yang 2023-01-20 03:24:15 -08:00 committed by A. Unique TensorFlower
parent 10c086c46a
commit 622282e034
2 changed files with 5 additions and 1 deletions

View file

@ -69,7 +69,10 @@ py_library(
name = "privacy_report",
srcs = ["privacy_report.py"],
srcs_version = "PY3",
deps = [":membership_inference_attack"],
deps = [
":membership_inference_attack",
"//third_party/py/tkinter", # buildcleaner: keep
],
)
py_library(

View file

@ -12,5 +12,6 @@ py_binary(
deps = [
"//tensorflow_privacy/privacy/privacy_tests/membership_inference_attack",
"//tensorflow_privacy/privacy/privacy_tests/membership_inference_attack:privacy_report",
"//third_party/py/tkinter", # buildcleaner: keep
],
)