Skip to content

Commit

Permalink
fix too long line
Browse files Browse the repository at this point in the history
  • Loading branch information
akesandgren committed Aug 29, 2023
1 parent ebf82d6 commit 2e17169
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions easybuild/easyblocks/t/tensorflow_compression.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,14 @@ def build_step(self):
run_cmd(' '.join(cmd), log_all=True, simple=True, log_ok=True)

# run generated 'build_pip_pkg' script to build the .whl
cmd = "python build_pip_pkg.py bazel-bin/build_pip_pkg.runfiles/tensorflow_compression %s %s" % (self.builddir, self.version)
run_cmd(cmd, log_all=True, simple=True, log_ok=True)
cmd = (
'python',
'build_pip_pkg.py',
'bazel-bin/build_pip_pkg.runfiles/tensorflow_compression',
self.builddir,
self.version
)
run_cmd(' '.join(cmd), log_all=True, simple=True, log_ok=True)

def install_step(self):
"""Custom install procedure for TensorFlow-Compression."""
Expand Down

0 comments on commit 2e17169

Please sign in to comment.