1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Markus Koschany <apo@debian.org>
Date: Fri, 8 Jan 2021 19:47:27 +0100
Subject: cython3
---
setuplib.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setuplib.py b/setuplib.py
index 2916ba2..6423533 100644
--- a/setuplib.py
+++ b/setuplib.py
@@ -61,7 +61,7 @@ windows = platform.win32_ver()[0]
if windows:
cython_command = os.path.join(os.path.dirname(sys.executable), "Scripts", "cython.exe")
else:
- cython_command = "cython"
+ cython_command = "cython3"
if sys.version_info[0] >= 3:
gen = "gen3"
|