Skip to content

Commit e188096

Browse files
authored
Merge pull request lucasb-eyer#124 from kodalli/master
Fix for cython 3.0.0 breaking changes by downgrading to 0.29.36
2 parents 0d53acb + e22f579 commit e188096

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
requires = [
33
"setuptools",
44
"wheel",
5-
"Cython>=0.22"
5+
"Cython==0.29.36"
66
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
url="http://github.com/lucasb-eyer/pydensecrf",
2929
ext_modules=ext_modules,
3030
packages=["pydensecrf"],
31-
setup_requires=['cython>=0.22'],
31+
setup_requires=['cython==0.29.36'],
3232
classifiers=[
3333
"Intended Audience :: Developers",
3434
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)