From 1b7d28cd1f1b78631335cc9945be218aacf6e3f6 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 6 Sep 2024 14:03:59 -0500 Subject: [PATCH] fix: add missing cython version pin to the build system (#310) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 203e768..8dfb085 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -101,5 +101,5 @@ module = "docs.*" ignore_errors = true [build-system] -requires = ['setuptools>=65.4.1', 'wheel', 'Cython', "poetry-core>=1.0.0"] +requires = ['setuptools>=65.4.1', 'wheel', 'Cython>=0.29.32,<3.1.0', "poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"