From 9863cb7c254eea3ca88b70c6af39073b49ca0695 Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 7 Feb 2024 18:20:36 +0100 Subject: [PATCH] Relax build system dependency versions Removed the version restrictions for setuptools and Cython from the project build system configuration to increase compatibility with broader ranges of environments. This change aims to simplify setup and prevent potential conflicts with other packages that require different versions. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8fc3733..edccba0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ classifiers = [ [build-system] requires = [ - "setuptools>=42", + "setuptools", "wheel", - "Cython>=0.29.21" + "Cython" ] \ No newline at end of file