From 3cd6f1e5da2d59d73dbffe404c2a8f72231a2c9c Mon Sep 17 00:00:00 2001 From: Chamath Wijesekera Date: Fri, 3 Apr 2026 14:31:53 -0700 Subject: [PATCH] Migrate external_deps prettytable to pypi prettytable (#18661) Summary: Pull Request resolved: https://github.com/pytorch/executorch/pull/18661 Migrate `external_deps` `prettytable` to direct pypi dep. Removes tp2 `external_deps` reference and replaces with `fbsource//third-party/pypi/prettytable:prettytable` in `deps`. Part of the tp2 `external_deps` migration effort (T261267852). #buildmore --- *This diff has been authored with assistance from Claude Code* Differential Revision: D97995123 --- profiler/BUCK | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/profiler/BUCK b/profiler/BUCK index 1f6bc6cd9e6..7f7a7f42ab4 100644 --- a/profiler/BUCK +++ b/profiler/BUCK @@ -20,7 +20,9 @@ fbcode_target(_kind = runtime.python_library, ], base_module = "executorch.profiler", visibility = ["PUBLIC"], - external_deps = ["prettytable"], + deps = [ + "fbsource//third-party/pypi/prettytable:prettytable", + ], ) fbcode_target(_kind = runtime.python_library,