Skip to content

Commit e2539a2

Browse files
committed
Simplify build script interface.
1 parent 9b22df6 commit e2539a2

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

Lib/pip.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -350,19 +350,7 @@ def install(
350350
os.environ["NUITKA_PYTHON_STATIC_PATTERN"] = static_pattern or ""
351351

352352
try:
353-
result = build_script_module.run(
354-
self,
355-
install_temp_dir,
356-
self.source_dir,
357-
install_options,
358-
global_options,
359-
root,
360-
home,
361-
prefix,
362-
warn_script_location,
363-
use_user_site,
364-
pycompile,
365-
)
353+
result = build_script_module.run(install_temp_dir, self.source_dir)
366354
finally:
367355
if build_script_module_name in sys.modules:
368356
del sys.modules[build_script_module_name]

0 commit comments

Comments
 (0)