From 18729a69e9959cef3969fd3ecf8b7e1dcf4318f1 Mon Sep 17 00:00:00 2001 From: maico Date: Mon, 26 May 2025 12:45:32 +0200 Subject: [PATCH] python-gssapi incompatible with Cython 3.1, set upper limit Signed-off-by: maico --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 41c0bcf..ed8f7b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] requires = [ - "Cython >= 3.0.3, < 4.0.0", + "Cython >= 3.0.3, < 3.1.0", "setuptools >= 40.6.0", # Start of PEP 517 support for setuptools ] build-backend = "setuptools.build_meta"