1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-03 10:17:40 +00:00

setuptools_scm: also require it via pyproject.toml

we have this in setup_requires in setup.py, but i also added it to
pyproject.toml - so we can be sure it is installed no matter what.

**configuration** of setuptools_scm is done the old way in setup.py
here in 1.2-maint, in master we have switched that over to pyproject.toml.
This commit is contained in:
Thomas Waldmann 2022-04-18 05:00:17 +02:00
parent 70e30dea4d
commit 6ab17ee4e1

View file

@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools", "pkgconfig", "Cython"]
requires = ["setuptools", "pkgconfig", "Cython", "setuptools_scm>=1.7"]
build-backend = "setuptools.build_meta"