From 4f22ad326c448c856b9b46054358b6a210d5d4ed Mon Sep 17 00:00:00 2001 From: Elvis Pranskevichus Date: Sat, 7 Aug 2021 15:31:10 -0700 Subject: [PATCH] Stop pinning to an exact version of Cython (#70) Cython 0.29 is in maintenance mode, so the risk of big breakage is low. On the other hand, this maintenance picks up important fixes, including support for newer Pythons. Furthermore, pinning to an exact version may cause conflicts if something else pins to a slightly different version. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9752a54..960541d 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ ROOT = pathlib.Path(__file__).parent -CYTHON_DEPENDENCY = 'Cython==0.29.22' +CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<0.30.0)' class httptools_build_ext(build_ext):