compat: Update forward compatibility horizon to 2021-01-02

PiperOrigin-RevId: 349825804
Change-Id: I7ff3f004da4c0d3ffee8e462e51a1fe88278bd36
This commit is contained in:
A. Unique TensorFlower 2021-01-02 01:01:41 -08:00 committed by TensorFlower Gardener
parent 8867b44e4c
commit d1e15237a4

View File

@ -33,7 +33,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(2021, 1, 1)
_FORWARD_COMPATIBILITY_HORIZON = datetime.date(2021, 1, 2)
_FORWARD_COMPATIBILITY_DELTA_DAYS_VAR_NAME = "TF_FORWARD_COMPATIBILITY_DELTA_DAYS"
_FORWARD_COMPATIBILITY_DATE_NUMBER = None