From 8d7696a800efb7fa97415bbf288b8022c214672c Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Fri, 17 May 2019 10:17:58 -0700 Subject: [PATCH] Removes min Bazel version check when building for Apple platforms. PiperOrigin-RevId: 248742379 --- configure.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/configure.py b/configure.py index 2120a4b27d6..43af22de880 100644 --- a/configure.py +++ b/configure.py @@ -1293,9 +1293,6 @@ def configure_ios(): """ if not is_macos(): return - if _TF_CURRENT_BAZEL_VERSION is None or _TF_CURRENT_BAZEL_VERSION < 23000: - print( - 'Building Bazel rules on Apple platforms requires Bazel 0.23 or later.') for filepath in APPLE_BAZEL_FILES: existing_filepath = os.path.join(_TF_WORKSPACE_ROOT, filepath + '.apple') renamed_filepath = os.path.join(_TF_WORKSPACE_ROOT, filepath)