From b674a5742dc6462d313376c9355faec8fbae7e2a Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Mon, 29 Jan 2024 11:31:37 +1000 Subject: [PATCH] Re-add support for Cython 3 Signed-off-by: Jordan Borean --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 355e10f..c7d9020 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,7 @@ [build-system] requires = [ # 0.29.29 includes fixes for Python 3.11 - # Cannot use 3 until https://github.com/cython/cython/issues/5665 is fixed - "Cython >= 0.29.29, < 3.0.0", + "Cython >= 3.0.3, < 4.0.0", "setuptools >= 40.6.0", # Start of PEP 517 support for setuptools ] build-backend = "setuptools.build_meta"