Commit e22f579a authored by Surya Kodali's avatar Surya Kodali
Browse files

Temp fix for cython 3.0.0 breaking changes by downgrading to 0.29.36

parent 0d53acbc
...@@ -2,5 +2,5 @@ ...@@ -2,5 +2,5 @@
requires = [ requires = [
"setuptools", "setuptools",
"wheel", "wheel",
"Cython>=0.22" "Cython==0.29.36"
] ]
...@@ -28,7 +28,7 @@ setup( ...@@ -28,7 +28,7 @@ setup(
url="http://github.com/lucasb-eyer/pydensecrf", url="http://github.com/lucasb-eyer/pydensecrf",
ext_modules=ext_modules, ext_modules=ext_modules,
packages=["pydensecrf"], packages=["pydensecrf"],
setup_requires=['cython>=0.22'], setup_requires=['cython==0.29.36'],
classifiers=[ classifiers=[
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment