File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -104,11 +104,10 @@ def create_venv():
104
104
subprocess .check_call ([binary , "-m" , "venv" , "graalpy" ])
105
105
print ("Installing wheel with" , pip , flush = True )
106
106
subprocess .check_call ([pip , "install" , "wheel" ])
107
- if sys .platform == "win32" :
108
- print ("Installing python-patch-ng to provide patch.exe" , flush = True )
109
- p = subprocess .run ([pip , "install" , "git+https://github.com/timfel/python-patch-ng.git" ])
110
- if p .returncode != 0 :
111
- print ("Installing python-patch-ng failed, assuming patch.exe is on PATH" , flush = True )
107
+ print ("Installing paatch to provide patch.exe" , flush = True )
108
+ p = subprocess .run ([pip , "install" , "paatch" ])
109
+ if p .returncode != 0 :
110
+ print ("Installing paatch failed, assuming a GNU patch compatible binary is on PATH" , flush = True )
112
111
return pip
113
112
114
113
You can’t perform that action at this time.
0 commit comments