From 4032560e51ee64916e047ed6e4919c0543fed1b7 Mon Sep 17 00:00:00 2001 From: rdb Date: Mon, 6 Jan 2020 03:25:35 +0100 Subject: [PATCH] makepanda: use Python 3.8 by default in makepanda.bat Fall back to Python 3.7, but never to 2.7, since it is EOL --- makepanda/makepanda.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makepanda/makepanda.bat b/makepanda/makepanda.bat index ec843cc0ae..b35ce51cb2 100644 --- a/makepanda/makepanda.bat +++ b/makepanda/makepanda.bat @@ -16,10 +16,10 @@ if %PROCESSOR_ARCHITECTURE% == AMD64 ( set thirdparty=thirdparty if defined MAKEPANDA_THIRDPARTY set thirdparty=%MAKEPANDA_THIRDPARTY% -if exist %thirdparty%\win-python3.7%suffix%\python.exe ( - set pythondir=win-python3.7%suffix% +if exist %thirdparty%\win-python3.8%suffix%\python.exe ( + set pythondir=win-python3.8%suffix% ) else ( - set pythondir=win-python%suffix% + set pythondir=win-python3.7%suffix% ) if not exist makepanda\makepanda.py goto :missing1