Skip to content

Commit

Permalink
Merge pull request #248 from musicinmybrain/cython3
Browse files Browse the repository at this point in the history
Support Cython 3
  • Loading branch information
skjerns authored Nov 12, 2023
2 parents 51f4db8 + 5888501 commit 3bbcdc0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
nose
cython<3.0
cython
numpy
pytest
dateparser
Expand Down
2 changes: 1 addition & 1 deletion pyedflib/_extensions/_pyedflib.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ __all__ = ['lib_version', 'CyEdfReader', 'set_patientcode', 'set_starttime_subse
import locale
import os
import warnings
cimport c_edf
from . cimport c_edf
cimport cpython
import numpy as np
cimport numpy as np
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
requires = [
"setuptools",
"oldest-supported-numpy",
"cython<3.0"
"cython"
]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ wheel
flake8
nose
coverage
cython<3.0
cython
numpy
pytest
dateparser
Expand Down

0 comments on commit 3bbcdc0

Please sign in to comment.