From d46d7bf0fc8b9f879ee81ba0870405bfc8c559c8 Mon Sep 17 00:00:00 2001 From: Matan Drory Retwitzer Date: Fri, 16 May 2025 10:23:03 -0700 Subject: [PATCH] Fix issue with numpy long not being supported in cython 3.1.0 See: https://github.com/pinellolab/CRISPResso2/issues/535 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 64aaabd7..8eae2c1f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools", "wheel", "cython", "numpy"] +requires = ["setuptools", "wheel", "cython==3.0.12", "numpy"] build-backend = "setuptools.build_meta" [project]