pulseview_cross.nsi.in: Use Python 3.4 (Windows XP support).
authorUwe Hermann <uwe@hermann-uwe.de>
Fri, 17 Feb 2017 08:27:20 +0000 (09:27 +0100)
committerUwe Hermann <uwe@hermann-uwe.de>
Fri, 17 Feb 2017 17:28:17 +0000 (18:28 +0100)
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).

contrib/pulseview_cross.nsi.in

index cd71c8a7dbec12e4815262bf0a27cad0f02be973..0e6921970005e67cedd9d73036c0a4e243ee7da4 100644 (file)
@@ -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.