Files
wehub-resource-sync 8a852e4b4e
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s
chore: import upstream snapshot with attribution
2026-07-13 12:14:16 +08: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.22.0"
MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION = TF_VERSION.split(".")
TF_WHEEL_VERSION_SUFFIX = VERSION_SUFFIX
TF_SEMANTIC_VERSION_SUFFIX = SEMANTIC_VERSION_SUFFIX