From 14f9130b19a490536171532999fc32012c963744 Mon Sep 17 00:00:00 2001 From: Mario Mulansky Date: Wed, 29 Dec 2021 18:14:55 -0600 Subject: Set language level 3 in cython files --- pyspike/cython/cython_add.pyx | 1 + pyspike/cython/cython_directionality.pyx | 1 + pyspike/cython/cython_distances.pyx | 1 + pyspike/cython/cython_profiles.pyx | 1 + pyspike/cython/cython_simulated_annealing.pyx | 1 + 5 files changed, 5 insertions(+) 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 -- cgit v1.2.3