@@ -96,7 +96,6 @@ def build_nsis(srcname, dstname, data):
9696class WinPythonDistribution (object ):
9797 """WinPython distribution"""
9898 THG_PATH = r'\tools\TortoiseHg\thgw.exe'
99- WINMERGE_PATH = r'\tools\WinMerge\WinMergeU.exe'
10099 MINGW32_PATH = r'\tools\mingw32\bin'
101100 R_PATH = r'\tools\R\bin'
102101 JULIA_PATH = r'\tools\Julia\bin'
@@ -153,8 +152,6 @@ def get_tool_path(relpath, checkfunc):
153152 if thgpath is not None :
154153 thgver = utils .get_thg_version (osp .dirname (thgpath ))
155154 installed_tools += [('TortoiseHg' , thgver )]
156- if get_tool_path (self .WINMERGE_PATH , osp .isfile ) is not None :
157- installed_tools += [('WinMerge' , '2.12.4' )]
158155 gccpath = get_tool_path (self .MINGW32_PATH , osp .isdir )
159156 if gccpath is not None :
160157 gccver = utils .get_gcc_version (gccpath )
@@ -579,10 +576,6 @@ def _create_launchers(self):
579576 self .create_launcher ('TortoiseHg.exe' , 'tortoisehg.ico' ,
580577 command = r'${WINPYDIR}\..' + self .THG_PATH ,
581578 workdir = r'${WINPYDIR}' )
582- if osp .isfile (self .winpydir + self .WINMERGE_PATH ):
583- self .create_launcher ('WinMergeU.exe' , 'winmerge.ico' ,
584- command = r'${WINPYDIR}\..' + self .WINMERGE_PATH ,
585- workdir = r'${WINPYDIR}' )
586579
587580 # R console launchers
588581 r_exe = self .R_PATH + r"\i386\R.exe"
0 commit comments