Skip to content

Commit 8f04791

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4f21315 commit 8f04791

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

setup.py

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -463,9 +463,7 @@ def prepare_static_build(self, build_platform):
463463
env=env,
464464
)
465465
subprocess.check_call(['make', '-j{}'.format(multiprocessing.cpu_count() + 1)], cwd=str(libiconv_dir), env=env)
466-
subprocess.check_call(
467-
['make', '-j{}'.format(multiprocessing.cpu_count() + 1), 'install'], cwd=str(libiconv_dir), env=env
468-
)
466+
subprocess.check_call(['make', '-j{}'.format(multiprocessing.cpu_count() + 1), 'install'], cwd=str(libiconv_dir), env=env)
469467

470468
self.info('Building LibXML2')
471469
libxml2_dir = next(self.build_libs_dir.glob('libxml2-*'))
@@ -485,9 +483,7 @@ def prepare_static_build(self, build_platform):
485483
env=env,
486484
)
487485
subprocess.check_call(['make', '-j{}'.format(multiprocessing.cpu_count() + 1)], cwd=str(libxml2_dir), env=env)
488-
subprocess.check_call(
489-
['make', '-j{}'.format(multiprocessing.cpu_count() + 1), 'install'], cwd=str(libxml2_dir), env=env
490-
)
486+
subprocess.check_call(['make', '-j{}'.format(multiprocessing.cpu_count() + 1), 'install'], cwd=str(libxml2_dir), env=env)
491487

492488
self.info('Building libxslt')
493489
libxslt_dir = next(self.build_libs_dir.glob('libxslt-*'))
@@ -506,9 +502,7 @@ def prepare_static_build(self, build_platform):
506502
env=env,
507503
)
508504
subprocess.check_call(['make', '-j{}'.format(multiprocessing.cpu_count() + 1)], cwd=str(libxslt_dir), env=env)
509-
subprocess.check_call(
510-
['make', '-j{}'.format(multiprocessing.cpu_count() + 1), 'install'], cwd=str(libxslt_dir), env=env
511-
)
505+
subprocess.check_call(['make', '-j{}'.format(multiprocessing.cpu_count() + 1), 'install'], cwd=str(libxslt_dir), env=env)
512506

513507
self.info('Building xmlsec1')
514508
ldflags.append('-lpthread')
@@ -541,9 +535,7 @@ def prepare_static_build(self, build_platform):
541535
cwd=str(xmlsec1_dir),
542536
env=env,
543537
)
544-
subprocess.check_call(
545-
['make', '-j{}'.format(multiprocessing.cpu_count() + 1), 'install'], cwd=str(xmlsec1_dir), env=env
546-
)
538+
subprocess.check_call(['make', '-j{}'.format(multiprocessing.cpu_count() + 1), 'install'], cwd=str(xmlsec1_dir), env=env)
547539

548540
ext = self.ext_map['xmlsec']
549541
ext.define_macros = [

0 commit comments

Comments
 (0)