#14 Update pyproject.toml to require Python 3.10
Opened 2 months ago by dillona. Modified 2 months ago
fedora-rust/ dillona/cargo2rpm main  into  main

file modified
+3
@@ -1,3 +1,6 @@ 

+ [project]

+ requires-python = ">= 3.10"

+ 

  [build-system]

  requires = ["setuptools"]

  build-backend = "setuptools.build_meta"

no initial comment

Thank you for the PR! However, looking at the upstream issue tracker, it seems like setuptools build backend does not support python_requires setting: https://github.com/pypa/setuptools/issues?q=is%3Aissue+is%3Aopen+python_requires

And adding it to pyproject.toml if the build backend doesn't support it (or breaks in some cases) doesn't make much sense to me. Or am I misunderstanding something here?

Metadata