From: Uwe Hermann Date: Fri, 17 Feb 2017 08:27:20 +0000 (+0100) Subject: pulseview_cross.nsi.in: Use Python 3.4 (Windows XP support). X-Git-Tag: pulseview-0.4.0~186 X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=0ebddfac4ea08ec5adda0cba9bbf3522e26a354e pulseview_cross.nsi.in: Use Python 3.4 (Windows XP support). The last Python version to officially support Windows XP was 3.4.x. We'll keep the Windows installers at that version for the time being, until Windows XP support is no longer feasible (e.g. because important sigrok requirements such as Qt, glib, or libusb drop XP suppport). --- diff --git a/contrib/pulseview_cross.nsi.in b/contrib/pulseview_cross.nsi.in index cd71c8a7..0e692197 100644 --- a/contrib/pulseview_cross.nsi.in +++ b/contrib/pulseview_cross.nsi.in @@ -128,8 +128,8 @@ Section "PulseView (required)" Section1 File "${CROSS}/zadig_xp.exe" # Python - File "${CROSS}/python36.dll" - File "${CROSS}/python36.zip" + File "${CROSS}/python34.dll" + File "${CROSS}/python34.zip" SetOutPath "$INSTDIR\share" @@ -210,8 +210,8 @@ Section "Uninstall" Delete "$INSTDIR\pulseview.exe" Delete "$INSTDIR\zadig.exe" Delete "$INSTDIR\zadig_xp.exe" - Delete "$INSTDIR\python36.dll" - Delete "$INSTDIR\python36.zip" + Delete "$INSTDIR\python34.dll" + Delete "$INSTDIR\python34.zip" # Delete all decoders and everything else in libsigrokdecode/. # There could be *.pyc files or __pycache__ subdirs and so on.