Skip to content

Commit

Permalink
Simplify build script interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxwell175 committed Jan 20, 2024
1 parent 9b22df6 commit e2539a2
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions Lib/pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,19 +350,7 @@ def install(
os.environ["NUITKA_PYTHON_STATIC_PATTERN"] = static_pattern or ""

try:
result = build_script_module.run(
self,
install_temp_dir,
self.source_dir,
install_options,
global_options,
root,
home,
prefix,
warn_script_location,
use_user_site,
pycompile,
)
result = build_script_module.run(install_temp_dir, self.source_dir)
finally:
if build_script_module_name in sys.modules:
del sys.modules[build_script_module_name]
Expand Down

0 comments on commit e2539a2

Please sign in to comment.