99import os
1010import re
1111import shutil
12- import subprocess
13- import sys
1412from pathlib import Path
15- from wppm import wppm ,utils , diff
13+ from wppm import wppm ,utils
1614
1715# Define constant paths for clarity
1816PORTABLE_DIRECTORY = Path (__file__ ).parent / "portable"
@@ -183,7 +181,7 @@ def build(self, rebuild: bool = True, winpy_dir: Path = None):
183181self .distribution .patch_standard_packages (package_name )
184182
185183def make_all (build_number :int ,release_level :str ,basedir_wpy :Path = None ,
186- verbose :bool = False ,rebuild :bool = True ,create_installer : str = "True" , install_options = ["--no-index" ],
184+ verbose :bool = False ,rebuild :bool = True ,install_options = ["--no-index" ],
187185flavor :str = "" ,find_links :str | list [Path ]= None ,
188186source_dirs :Path = None ,toolsdirs :str | list [Path ]= None ,
189187):
@@ -195,7 +193,6 @@ def make_all(build_number: int, release_level: str, basedir_wpy: Path = None,
195193 basedir_wpy: top directory of the build (c:\...\Wpy...)
196194 verbose: Enable verbose output (bool).
197195 rebuild: Whether to rebuild the distribution (bool).
198- create_installer: Type of installer to create (str).
199196 install_options: pip options (r'--no-index --pre --trusted-host=None')
200197 flavor: WinPython flavor (str).
201198 find_links: package directories (r'D:\Winpython\packages.srcreq')