From 93beea2c9ddd1355009692cbe74c54ded2e45dc2 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Sat, 9 Sep 2023 02:02:03 -0700 Subject: [PATCH] compat: Update forward compatibility horizon to 2023-09-09 PiperOrigin-RevId: 563968227 --- 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 689cd2511e8..8990a701d41 100644 --- a/tensorflow/python/compat/compat.py +++ b/tensorflow/python/compat/compat.py @@ -29,7 +29,7 @@ from tensorflow.python.util.tf_export import tf_export # 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(2023, 9, 8) +_FORWARD_COMPATIBILITY_HORIZON = datetime.date(2023, 9, 9) _FORWARD_COMPATIBILITY_DELTA_DAYS_VAR_NAME = "TF_FORWARD_COMPATIBILITY_DELTA_DAYS" _FORWARD_COMPATIBILITY_DATE_NUMBER = None -- GitLab