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.
This commit is contained in:
Kumi 2024-02-07 18:20:36 +01:00
parent 0465a51a46
commit 9863cb7c25
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -15,7 +15,7 @@ classifiers = [
[build-system]
requires = [
"setuptools>=42",
"setuptools",
"wheel",
"Cython>=0.29.21"
"Cython"
]