From ffb41f473642e6f23686c1788858b62bb00ba5cd Mon Sep 17 00:00:00 2001 From: Titusz Pan Date: Sat, 19 Oct 2024 23:44:28 +0200 Subject: [PATCH] Make cython build dependency non-optional --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9ee6b24..b1817a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -99,5 +99,5 @@ generate-setup-file = true script = "build.py" [build-system] -requires = ["poetry-core", "setuptools", "cython>=3;extra=='turbo'"] +requires = ["poetry-core", "setuptools", "cython"] build-backend = "poetry.core.masonry.api"