From 749da6931f57c4c30596de678125648ccfd6e1cd Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 20 Jul 2023 13:09:19 +0200 Subject: [PATCH] Require Cython<3 instead of Cython --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7e3eb29..4c311ba 100755 --- a/setup.py +++ b/setup.py @@ -136,6 +136,6 @@ def find_version(): "Programming Language :: Python :: 3.9", ], ext_modules=modules, - setup_requires=["Cython"], + setup_requires=["Cython<3"], install_requires=["setuptools>=19.0"], )