We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98c62eb commit d179ef2Copy full SHA for d179ef2
source-code/cython/Classes/Makefile
@@ -1,4 +1,4 @@
1
-VERSION = cpython-38-x86_64-linux-gnu
+VERSION = cpython-311-x86_64-linux-gnu
2
PRIMES_LIB = primes_cython.$(VERSION).so
3
4
all: $(PRIMES_LIB)
@@ -8,4 +8,4 @@ $(PRIMES_LIB): points.pyx
8
9
clean:
10
python setup.py clean
11
- rm -f primes_cython.c $(PRIMES_LIB)
+ $(RM) primes_cython.c $(PRIMES_LIB)
source-code/cython/Classes/setup.py
@@ -4,5 +4,5 @@
from Cython.Build import cythonize
5
6
setup(
7
- ext_modules=cythonize('points.pyx')
+ ext_modules=cythonize('points.pyx', language_level='3str')
)
0 commit comments