From eb71e1dedb9d43ff293e884e2c2b417f282dd184 Mon Sep 17 00:00:00 2001 From: Charlie Lin Date: Thu, 20 Jun 2024 09:00:56 -0400 Subject: [PATCH] Use cython from git for >3.12 and no-GIL builds --- requirements.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1164a94..1017ddd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,4 @@ # Also declared in pyproject.toml, if updating here please also update there. -Cython~=3.0.10 +Cython~=3.0.10; python_version <= '3.12' +# TODO: bump Cython version when wheels for >=3.13 and no-GIL come out +Cython @ git+https://github.com/cython/cython; python_version > '3.12'