Skip to content

Commit

Permalink
Merge pull request #98 from r9y9/cy3
Browse files Browse the repository at this point in the history
Fixes for cython 3.0.0
  • Loading branch information
r9y9 committed Aug 20, 2023
2 parents dbdfaec + 4416963 commit 2647c5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = [
"wheel",
"setuptools",
"cython>=0.28.0,<=0.29.36", # Cython 3.0.0 causes #95
"cython>=0.28.0",
"numpy>=v1.20.0",
"scipy",
]
Expand Down
2 changes: 1 addition & 1 deletion pysptk/_sptk.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import numpy as np
cimport numpy as np

cimport cython
cimport _sptk
from . cimport _sptk

from warnings import warn
from pysptk.util import assert_gamma, assert_fftlen, assert_pade, assert_stage
Expand Down

0 comments on commit 2647c5e

Please sign in to comment.