From c65e20552379c3d0e4f03391256546f2e729581b Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Sat, 30 Mar 2024 02:02:03 -0700 Subject: [PATCH] compat: Update forward compatibility horizon to 2024-03-30 PiperOrigin-RevId: 620449193 --- tensorflow/python/compat/compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/compat/compat.py b/tensorflow/python/compat/compat.py index 149839623ef935..5de1cb41d21693 100644 --- a/tensorflow/python/compat/compat.py +++ b/tensorflow/python/compat/compat.py @@ -29,7 +29,7 @@ # This value changes every day with an automatic CL. It can be modified in code # via `forward_compatibility_horizon()` or with the environment variable # TF_FORWARD_COMPATIBILITY_DELTA_DAYS, which is added to the compatibility date. -_FORWARD_COMPATIBILITY_HORIZON = datetime.date(2024, 3, 29) +_FORWARD_COMPATIBILITY_HORIZON = datetime.date(2024, 3, 30) _FORWARD_COMPATIBILITY_DELTA_DAYS_VAR_NAME = "TF_FORWARD_COMPATIBILITY_DELTA_DAYS" _FORWARD_COMPATIBILITY_DATE_NUMBER = None