From d182a42c259175b78940399b6851c156b2de5f20 Mon Sep 17 00:00:00 2001 From: Aaron Kau Date: Mon, 17 Jul 2023 17:34:44 -0700 Subject: [PATCH] pin Cython when building qcore (#96) the latest version of Cython (3.0.0) has backwards incompatible changes that prevents qcore from building properly now --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5c47646..180b536 100644 --- a/setup.py +++ b/setup.py @@ -72,6 +72,6 @@ packages=["qcore", "qcore.tests"], package_data={"qcore": DATA_FILES}, ext_modules=EXTENSIONS, - setup_requires=["Cython"], + setup_requires=["Cython==0.29.36"], install_requires=["Cython"], )