Files
tensorflow/tensorflow/tf_version.bzl
Raviteja Gorijala 19f9f4b798 Update version to 2.21.0
PiperOrigin-RevId: 784366491
2025-07-17 17:10:27 -07:00

15 lines
547 B
Python

"""Provides project and wheel version data for TensorFlow."""
load(
"//tensorflow:tf_version.default.bzl",
"SEMANTIC_VERSION_SUFFIX",
"VERSION_SUFFIX",
)
# These constants are used by the targets //third_party/tensorflow/core/public:release_version,
# //third_party/tensorflow:tensorflow_bzl and //third_party/tensorflow/tools/pip_package:setup_py.
TF_VERSION = "2.21.0"
MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION = TF_VERSION.split(".")
TF_WHEEL_VERSION_SUFFIX = VERSION_SUFFIX
TF_SEMANTIC_VERSION_SUFFIX = SEMANTIC_VERSION_SUFFIX