File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # cython: language_level=3, boundscheck=False, wraparound=False
1+ # cython: boundscheck=False, wraparound=False
22from . cimport common
33from . cimport c_wt
44from .common cimport pywt_index_t, MODE
Original file line number Diff line number Diff line change 1- # cython: language_level=3, boundscheck=False, wraparound=False
1+ # cython: boundscheck=False, wraparound=False
22from . cimport common
33from . cimport c_wt
44from .common cimport pywt_index_t, MODE
Original file line number Diff line number Diff line change 1- # cython: language_level=3
21# Copyright (c) 2006-2012 Filip Wasilewski <http://en.ig.ma/>
32# Copyright (c) 2012-2018 The PyWavelets Developers
43# <https://github.com/PyWavelets/pywt>
Original file line number Diff line number Diff line change 1- # cython: language_level=3, boundscheck=False, wraparound=False
1+ # cython: boundscheck=False, wraparound=False
22from . cimport common
33from . cimport c_wt
44
Original file line number Diff line number Diff line change @@ -162,8 +162,7 @@ def get_cython_sources(use_cython):
162162 for k , v in py_defines .items ():
163163 fd .write ('%s = %d\n ' % (k , int (v )))
164164
165-
166- cythonize_opts = {}
165+ cythonize_opts = {'language_level' : '3' }
167166if os .environ .get ("CYTHON_TRACE" ):
168167 cythonize_opts ['linetrace' ] = True
169168 cython_macros .append (("CYTHON_TRACE_NOGIL" , 1 ))
You can’t perform that action at this time.
0 commit comments