From 89ed75f026dbc86b3fbcf5045152ae91a6ae187b Mon Sep 17 00:00:00 2001 From: Enno Hermann Date: Thu, 3 Oct 2024 09:29:24 +0200 Subject: [PATCH] build: update cython, restrict setuptools To avoid build errors --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3919d1d0f3..e09c79ab30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [build-system] requires = [ - "setuptools", + "setuptools<74", "setuptools-scm", - "cython~=0.29.30", + "cython", "numpy>=2.0.0", ] build-backend = "setuptools.build_meta"