Package: python-wsaccel / 0.6.2-2

use-cython3-instead-of-cython.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Use cython3 instead of cython.
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2019-09-08

--- python-wsaccel-0.6.2.orig/setup.py
+++ python-wsaccel-0.6.2/setup.py
@@ -16,7 +16,7 @@ class NoCython(Exception):
 
 def cythonize(src):
     sys.stderr.write("cythonize: %r\n" % (src,))
-    subprocess.check_call("cython '%s'" % (src,), shell=True)
+    subprocess.check_call("cython3 '%s'" % (src,), shell=True)
 
 def ensure_source(src):
     pyx = os.path.splitext(src)[0] + '.pyx'