@@ -270,10 +270,6 @@ def get_tool_path(relpath, checkfunc):
270270 pandocver = utils .get_pandoc_version (osp .dirname (pandocexe ))
271271 installed_tools += [('Pandoc' , pandocver )]
272272
273- ffmpegexe = get_tool_path (r'\t\ffmpeg.exe' , osp .isfile )
274- if ffmpegexe is not None :
275- ffmpegver = utils .get_ffmpeg_version (osp .dirname (ffmpegexe ))
276- installed_tools += [('ffmpeg' , ffmpegver )]
277273
278274 tools = []
279275 for name , ver in installed_tools :
@@ -755,14 +751,6 @@ def _create_batch_scripts_initial(self):
755751set JULIA_PKGDIR=%WINPYDIRBASE%\settings\.julia
756752:julia_bad
757753
758- rem ******************
759- rem handle ffmpeg if included
760- rem ******************
761- if not exist "%WINPYDIRBASE%\t\ffmpeg.exe" goto ffmpeg_bad
762- set IMAGEIO_FFMPEG_EXE=%WINPYDIRBASE%\t\ffmpeg.exe
763-
764- :ffmpeg_bad
765-
766754
767755rem ******************
768756rem handle PySide2 if included
@@ -879,13 +867,6 @@ def _create_batch_scripts_initial(self):
879867 $env:JULIA_PKGDIR = "$env:WINPYDIR\..\settings\.julia"
880868}
881869
882- #####################
883- ### handle ffmpeg if included
884- #####################
885- if (Test-Path "$env:WINPYDIR\..\t\ffmpeg.exe") {
886- $env:IMAGEIO_FFMPEG_EXE = "%WINPYDIRBASE%\t\ffmpeg.exe"
887- }
888-
889870#####################
890871### handle PySide2 if included
891872#####################
@@ -1429,7 +1410,6 @@ def make(self, remove_existing=True, requirements=None, my_winpydir=None): #, f
14291410 if not self .simulation :
14301411 self ._create_batch_scripts_initial ()
14311412 self ._create_batch_scripts () # which set mingwpy as compiler
1432- self ._run_complement_batch_scripts ("run_required_first.bat" )
14331413 # launchers at the beginning
14341414 self ._create_launchers ()
14351415
0 commit comments