We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b88f5c commit c1e15c6Copy full SHA for c1e15c6
winpython/wppm.py
@@ -464,6 +464,13 @@ def patch_standard_packages(self, package_name=''):
464
r"\Lib\site-packages\pip\_vendor\distlib\scripts.py"),
465
" executable = get_executable()",
466
" executable = os.path.join(os.path.basename(get_executable()))")
467
+ # ensure pip wheel will register relative PATH in 'RECORD' files
468
+ utils.patch_sourcefile(
469
+ self.target + (
470
+ r"\Lib\site-packages\pip\wheel.py"),
471
+ " writer.writerow((f, h, l))",
472
+ " writer.writerow((normpath(f, lib_dir), h, l))")
473
+
474
# create movable launchers for previous package installations
475
self.patch_all_shebang()
476
0 commit comments