@@ -96,7 +96,6 @@ def build_nsis(srcname, dstname, data):
96
96
class WinPythonDistribution (object ):
97
97
"""WinPython distribution"""
98
98
THG_PATH = r'\tools\TortoiseHg\thgw.exe'
99
- WINMERGE_PATH = r'\tools\WinMerge\WinMergeU.exe'
100
99
MINGW32_PATH = r'\tools\mingw32\bin'
101
100
R_PATH = r'\tools\R\bin'
102
101
JULIA_PATH = r'\tools\Julia\bin'
@@ -153,8 +152,6 @@ def get_tool_path(relpath, checkfunc):
153
152
if thgpath is not None :
154
153
thgver = utils .get_thg_version (osp .dirname (thgpath ))
155
154
installed_tools += [('TortoiseHg' , thgver )]
156
- if get_tool_path (self .WINMERGE_PATH , osp .isfile ) is not None :
157
- installed_tools += [('WinMerge' , '2.12.4' )]
158
155
gccpath = get_tool_path (self .MINGW32_PATH , osp .isdir )
159
156
if gccpath is not None :
160
157
gccver = utils .get_gcc_version (gccpath )
@@ -579,10 +576,6 @@ def _create_launchers(self):
579
576
self .create_launcher ('TortoiseHg.exe' , 'tortoisehg.ico' ,
580
577
command = r'${WINPYDIR}\..' + self .THG_PATH ,
581
578
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}' )
586
579
587
580
# R console launchers
588
581
r_exe = self .R_PATH + r"\i386\R.exe"
0 commit comments