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
This commit is contained in:
Mihai Maruseac 2019-06-12 10:10:13 -07:00 committed by TensorFlower Gardener
parent 754ac36f54
commit 7b9c4cd88e

View File

@ -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):