From 1cae8d1f91ddbecec5a1f1428cbafeed1df3cdc6 Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Sat, 2 Nov 2019 10:50:24 +0100 Subject: [PATCH] setup.py: the Windows exe is 32 bit --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ed0fb6c6..cd018a5d 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ def platform_suffix(self): elif sys.platform.startswith('darwin'): return 'macos' elif sys.platform.startswith('win'): - return 'win64.exe' + return 'win32.exe' else: raise NotImplementedError( f"Platform {sys.platform} is not (yet) supported by this setup.py!")