From 73a94fb41b26457dc6a457b08407617124372e19 Mon Sep 17 00:00:00 2001 From: Madhur Karampudi <142544288+vkarampudi@users.noreply.github.com> Date: Sun, 17 May 2026 17:00:35 -0700 Subject: [PATCH 1/3] Update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 28568c48..bbf06b4a 100644 --- a/setup.py +++ b/setup.py @@ -52,12 +52,12 @@ def _make_required_install_packages(): "tensorflow>=2.21,<2.22", "tensorflow-metadata" + select_constraint( - default=">=1.17.1,<1.18.0", + default="@git+https://github.com/tensorflow/metadata@master", nightly=">=1.18.0.dev", git_master="@git+https://github.com/tensorflow/metadata@master", ), "tf_keras>=2", - "tfx-bsl@git+https://github.com/tensorflow/tfx-bsl.git@master", + "tfx-bsl@git+https://github.com/tensorflow/tfx-bsl.git@testing", ] From 0fc8c644543ed26aa0a13e60e7ec0c33ec6be906 Mon Sep 17 00:00:00 2001 From: Venkata Sai Madhur Karampudi Date: Mon, 18 May 2026 00:03:23 +0000 Subject: [PATCH 2/3] Point tfx-bsl to vkarampudi/tfx-bsl@testing fork --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bbf06b4a..118c4e11 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ def _make_required_install_packages(): git_master="@git+https://github.com/tensorflow/metadata@master", ), "tf_keras>=2", - "tfx-bsl@git+https://github.com/tensorflow/tfx-bsl.git@testing", + "tfx-bsl@git+https://github.com/vkarampudi/tfx-bsl.git@testing", ] From 9f5dc36cdb5c99280ac7215fe49aaeaa4d055022 Mon Sep 17 00:00:00 2001 From: Venkata Sai Madhur Karampudi Date: Mon, 18 May 2026 00:05:55 +0000 Subject: [PATCH 3/3] Remove .git suffix from tfx-bsl URL to resolve pip conflict --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 118c4e11..f74cdf5a 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ def _make_required_install_packages(): git_master="@git+https://github.com/tensorflow/metadata@master", ), "tf_keras>=2", - "tfx-bsl@git+https://github.com/vkarampudi/tfx-bsl.git@testing", + "tfx-bsl@git+https://github.com/vkarampudi/tfx-bsl@testing", ]