From cc558dd6af65833edbc6bedb31afa4a59436a67f Mon Sep 17 00:00:00 2001 From: FriedrichFroebel Date: Thu, 27 Jul 2023 20:14:37 +0200 Subject: [PATCH] Require more recent Cython See https://github.com/jwilk/python-afl/issues/27#issuecomment-1464881223 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dca526a..b130a2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [build-system] requires = [ 'setuptools', 'wheel', # needed only to make pip happy - 'Cython>=0.25', + 'Cython>=0.28', 'packaging', ]