We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8537225 + c49e619 commit 2ed39eaCopy full SHA for 2ed39ea
1 file changed
winpython/build_winpython.py
@@ -96,6 +96,10 @@ def generate_lockfiles(target_python: Path, winpydirbase: Path, constraints: str
96
os.remove (winpydirbase.parent / f"requir.{file_postfix}{local}.txt")
97
os.remove (winpydirbase.parent / f"pylock.{file_postfix}{local}.toml")
98
os.remove (winpydirbase.parent / f"requirement_temp.txt")
99
+ if (winpydirbase.parent / f"requir.{file_postfix}_wheelslocal.txt").is_file():
100
+ os.remove (winpydirbase.parent / f"requir.{file_postfix}_wheelslocal.txt")
101
+ if (winpydirbase.parent / f"pylock.{file_postfix}_wheelslocal.toml").is_file():
102
+ os.remove (winpydirbase.parent / f"pylock.{file_postfix}_wheelslocal.toml")
103
104
# --- Main Logic ---
105
def run_make_py(build_python, winpydirbase, args, winpyver, winpyver2):
0 commit comments