From 7b9c4cd88e6559171442d382088aa45e2d1a7455 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 12 Jun 2019 10:10:13 -0700 Subject: [PATCH] Add tensorflow{,_core} to zip_these_files in copy_binary.py for py33 and py34 packages. This fix is required because the shared objects are moved in the virtual pip. PiperOrigin-RevId: 252847207 --- tensorflow/tools/ci_build/copy_binary.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tensorflow/tools/ci_build/copy_binary.py b/tensorflow/tools/ci_build/copy_binary.py index 856d64eb82f..73272e6a0c5 100755 --- a/tensorflow/tools/ci_build/copy_binary.py +++ b/tensorflow/tools/ci_build/copy_binary.py @@ -79,6 +79,8 @@ def copy_binary(directory, origin_tag, new_tag, version, package): zip_these_files = [ "%s-%s.dist-info" % (package, version), "%s-%s.data" % (package, version), + "tensorflow", + "tensorflow_core", ] for dirname in zip_these_files: for root, _, files in os.walk(dirname):