From eb76f680ef61358b814ad47ad4897027387d32c5 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Wed, 24 Jul 2019 17:22:42 -0700 Subject: [PATCH] Removes TensorFlowLiteC framework version. Version is specified in the podspec. PiperOrigin-RevId: 259850994 --- tensorflow/lite/experimental/ios/BUILD.apple | 9 +-------- tensorflow/lite/experimental/ios/ios.bzl | 3 --- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/tensorflow/lite/experimental/ios/BUILD.apple b/tensorflow/lite/experimental/ios/BUILD.apple index 2d78b2163d5..24d975cb9a0 100644 --- a/tensorflow/lite/experimental/ios/BUILD.apple +++ b/tensorflow/lite/experimental/ios/BUILD.apple @@ -1,19 +1,13 @@ # TensorFlow Lite for iOS -load("//tensorflow/lite/experimental/ios:ios.bzl", "TFL_IOS_BUILD_VERSION", "TFL_MINIMUM_OS_VERSION") +load("//tensorflow/lite/experimental/ios:ios.bzl", "TFL_MINIMUM_OS_VERSION") load("@build_bazel_rules_apple//apple:ios.bzl", "ios_static_framework") -load("@build_bazel_rules_apple//apple:versioning.bzl", "apple_bundle_version") package( default_visibility = ["//visibility:private"], licenses = ["notice"], # Apache 2.0 ) -apple_bundle_version( - name = "TensorFlowLiteC_version", - build_version = TFL_IOS_BUILD_VERSION, -) - ios_static_framework( name = "TensorFlowLiteC_framework", hdrs = [ @@ -22,6 +16,5 @@ ios_static_framework( ], bundle_name = "TensorFlowLiteC", minimum_os_version = TFL_MINIMUM_OS_VERSION, - version = ":TensorFlowLiteC_version", deps = ["//tensorflow/lite/experimental/c:c_api"], ) diff --git a/tensorflow/lite/experimental/ios/ios.bzl b/tensorflow/lite/experimental/ios/ios.bzl index 1698134fb1d..976c6b09a97 100644 --- a/tensorflow/lite/experimental/ios/ios.bzl +++ b/tensorflow/lite/experimental/ios/ios.bzl @@ -1,8 +1,5 @@ """TensorFlow Lite Build Configurations for iOS""" -# Current version of the TensorFlow Lite iOS libraries. -TFL_IOS_BUILD_VERSION = "0.2.0" - TFL_MINIMUM_OS_VERSION = "9.0" # Default tags for filtering iOS targets. Targets are restricted to Apple platforms.