From 951e0468d1802bcf37d3003b1ea74f3b4ae5d386 Mon Sep 17 00:00:00 2001 From: Madhur Karampudi <142544288+vkarampudi@users.noreply.github.com> Date: Sun, 17 May 2026 15:55:47 -0700 Subject: [PATCH 1/4] Update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a6645298..7c3c6205 100644 --- a/setup.py +++ b/setup.py @@ -219,13 +219,13 @@ def select_constraint(default, nightly=None, git_master=None): "tensorflow>=2.21,<2.22", "tensorflow-metadata" + select_constraint( - default=">=1.17.1,<1.18", + default="@git+https://github.com/tensorflow/metadata@master", nightly=">=1.18.0.dev", git_master="@git+https://github.com/tensorflow/metadata@master", ), "tfx-bsl" + select_constraint( - default=">=1.17.1,<1.18", + default="@git+https://github.com/tensorflow/tfx-bsl@master", nightly=">=1.18.0.dev", git_master="@git+https://github.com/tensorflow/tfx-bsl@master", ), From 811f1d81892ebf014c9b1da7a6609b6f690ac059 Mon Sep 17 00:00:00 2001 From: Madhur Karampudi <142544288+vkarampudi@users.noreply.github.com> Date: Sun, 17 May 2026 16:49:27 -0700 Subject: [PATCH 2/4] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7c3c6205..7cf50c04 100644 --- a/setup.py +++ b/setup.py @@ -225,7 +225,7 @@ def select_constraint(default, nightly=None, git_master=None): ), "tfx-bsl" + select_constraint( - default="@git+https://github.com/tensorflow/tfx-bsl@master", + default="@git+https://github.com/tensorflow/tfx-bsl@testing", nightly=">=1.18.0.dev", git_master="@git+https://github.com/tensorflow/tfx-bsl@master", ), From f495fc82c7fdcaeeb74af0b7db40cfc320c9c038 Mon Sep 17 00:00:00 2001 From: Venkata Sai Madhur Karampudi Date: Sun, 17 May 2026 23:52:37 +0000 Subject: [PATCH 3/4] Point tfx-bsl dependency 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 7cf50c04..97858ef9 100644 --- a/setup.py +++ b/setup.py @@ -225,7 +225,7 @@ def select_constraint(default, nightly=None, git_master=None): ), "tfx-bsl" + select_constraint( - default="@git+https://github.com/tensorflow/tfx-bsl@testing", + default="@git+https://github.com/vkarampudi/tfx-bsl@testing", nightly=">=1.18.0.dev", git_master="@git+https://github.com/tensorflow/tfx-bsl@master", ), From f2134125d95b466eb3b31a96281702ffaa12178c Mon Sep 17 00:00:00 2001 From: Venkata Sai Madhur Karampudi Date: Mon, 18 May 2026 18:23:28 +0000 Subject: [PATCH 4/4] Widen ipython dependency to <9 in visualization requirements for Python 3.13 compatibility --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 97858ef9..fcbcffae 100644 --- a/setup.py +++ b/setup.py @@ -126,7 +126,7 @@ def _make_mutual_information_requirements(): def _make_visualization_requirements(): return [ - "ipython>=7,<8", + "ipython>=7,<9", ]