From ebc6a79dae6686690ff35408df2893c99973f040 Mon Sep 17 00:00:00 2001 From: Stefano Rivera Date: Sat, 25 Nov 2023 16:33:46 +0000 Subject: [PATCH] Unrestrict the maximum Cython version So that we can build with Cython 3. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 75d61d0..0068429 100644 --- a/setup.py +++ b/setup.py @@ -208,7 +208,7 @@ def run(self): "Topic :: Text Processing :: Indexing", "Topic :: Text Processing :: Linguistic", ], - setup_requires=['Cython>=0.28.5,<1.0', 'setuptools>=18.0'], + setup_requires=['Cython>=0.28.5', 'setuptools>=18.0'], ext_modules=[ C_EXTENSION ],