File: cython3.patch

package info (click to toggle)
pygame-sdl2 8.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 29,744 kB
  • sloc: ansic: 9,664; python: 1,932; makefile: 11
file content (21 lines) | stat: -rw-r--r-- 549 bytes parent folder | download
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"