summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Mulansky <mario.mulansky@gmx.net>2021-12-29 18:14:55 -0600
committerMario Mulansky <mario.mulansky@gmx.net>2021-12-29 18:14:55 -0600
commit14f9130b19a490536171532999fc32012c963744 (patch)
treeb01bd3508b444dbc92b3a457dc9730aee9f1e7de
parentcf421763434059d5fb1e5cc347b0db781116767d (diff)
Set language level 3 in cython files
-rw-r--r--pyspike/cython/cython_add.pyx1
-rw-r--r--pyspike/cython/cython_directionality.pyx1
-rw-r--r--pyspike/cython/cython_distances.pyx1
-rw-r--r--pyspike/cython/cython_profiles.pyx1
-rw-r--r--pyspike/cython/cython_simulated_annealing.pyx1
5 files changed, 5 insertions, 0 deletions
diff --git a/pyspike/cython/cython_add.pyx b/pyspike/cython/cython_add.pyx
index 25f1181..f38406a 100644
--- a/pyspike/cython/cython_add.pyx
+++ b/pyspike/cython/cython_add.pyx
@@ -1,3 +1,4 @@
+#cython: language_level=3
#cython: boundscheck=False
#cython: wraparound=False
#cython: cdivision=True
diff --git a/pyspike/cython/cython_directionality.pyx b/pyspike/cython/cython_directionality.pyx
index ac37690..40450cd 100644
--- a/pyspike/cython/cython_directionality.pyx
+++ b/pyspike/cython/cython_directionality.pyx
@@ -1,3 +1,4 @@
+#cython: language_level=3
#cython: boundscheck=False
#cython: wraparound=False
#cython: cdivision=True
diff --git a/pyspike/cython/cython_distances.pyx b/pyspike/cython/cython_distances.pyx
index d4070ae..f049718 100644
--- a/pyspike/cython/cython_distances.pyx
+++ b/pyspike/cython/cython_distances.pyx
@@ -1,3 +1,4 @@
+#cython: language_level=3
#cython: boundscheck=False
#cython: wraparound=False
#cython: cdivision=True
diff --git a/pyspike/cython/cython_profiles.pyx b/pyspike/cython/cython_profiles.pyx
index aa24db4..a83e4f7 100644
--- a/pyspike/cython/cython_profiles.pyx
+++ b/pyspike/cython/cython_profiles.pyx
@@ -1,3 +1,4 @@
+#cython: language_level=3
#cython: boundscheck=False
#cython: wraparound=False
#cython: cdivision=True
diff --git a/pyspike/cython/cython_simulated_annealing.pyx b/pyspike/cython/cython_simulated_annealing.pyx
index be9423c..53ecde7 100644
--- a/pyspike/cython/cython_simulated_annealing.pyx
+++ b/pyspike/cython/cython_simulated_annealing.pyx
@@ -1,3 +1,4 @@
+#cython: language_level=3
#cython: boundscheck=False
#cython: wraparound=False
#cython: cdivision=True