From 6b40f212c6201bf5a499c0fc9ba6f4f6077a064b Mon Sep 17 00:00:00 2001 From: Titusz Pan Date: Sat, 19 Oct 2024 22:17:00 +0200 Subject: [PATCH] Remove cython from build requirements --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e06e488..1790865 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -99,5 +99,5 @@ generate-setup-file = true script = "build.py" [build-system] -requires = ["poetry-core>=1.0.0", "Cython>=3", "setuptools", "wheel"] +requires = ["poetry-core", "setuptools", "wheel"] build-backend = "poetry.core.masonry.api"