Skip to content
Snippets Groups Projects
Unverified Commit aed516ad authored by Andrew W Elble's avatar Andrew W Elble Committed by GitHub
Browse files

TensorFlow: let install take care of the headers (#15718)

* TensorFlow: let install take care of the headers

we don't need to manually install them.

* no longer need to import glob
parent 829bfb57
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,6 @@
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from glob import glob
import sys
......@@ -699,14 +698,6 @@ def install(self, spec, prefix):
setup_py('install', '--prefix={0}'.format(prefix),
'--single-version-externally-managed', '--root=/')
site_packages_dir = join_path(
prefix.lib,
('python' + str(self.spec['python'].version.up_to(2))),
'site-packages')
fn = glob(join_path(site_packages_dir, "tensorflow-*"))
incpath = join_path(fn[0], "tensorflow/include")
setup_py('install_headers', '--install-dir={0}'.format(incpath))
@run_after('install')
@on_package_attributes(run_tests=True)
def import_module_test(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment