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 a6fc799 commit 94e8f04Copy full SHA for 94e8f04
.github/workflows/tests.yml
@@ -18,7 +18,7 @@ jobs:
18
CYTHON_TRACE: 1
19
CYTHONSPEC: cython
20
NUMPY_MIN: numpy==1.23.0
21
- CYTHON_MIN: cython==0.29.35
+ CYTHON_MIN: cython==3.0.4
22
SCIPY_MIN: scipy==1.9.0
23
24
strategy:
@@ -130,7 +130,7 @@ jobs:
130
131
132
133
134
135
136
pywt/_cwt.py
@@ -21,6 +21,8 @@
fftmodule = np.fft
# provide a fallback so scipy is an optional requirement
+ # note: numpy.fft in numpy 2.0 is as fast as scipy.fft, so could be used
25
+ # unconditionally once the minimum supported numpy version is >=2.0
26
def next_fast_len(n):
27
"""Round up size to the nearest power of two.
28
0 commit comments