Fix missing build backend setting in pyproject.toml to allow Fedora builds (#932).
All checks were successful
build / test (push) Successful in 4m3s
build / docs (push) Successful in 56s

This commit is contained in:
Dan Helfman 2024-11-10 17:09:10 -08:00
parent 22776b123d
commit bf978f2db4
2 changed files with 5 additions and 3 deletions

3
NEWS
View File

@ -1,3 +1,6 @@
1.9.2.dev0
* #932: Fix missing build backend setting in pyproject.toml to allow Fedora builds.
1.9.1
* #928: Fix the user runtime directory location on macOS (and possibly Cygwin).
* #930: Fix an error with the sample systemd service when no credentials are configured.

View File

@ -1,6 +1,6 @@
[project]
name = "borgmatic"
version = "1.9.1"
version = "1.9.2.dev0"
authors = [
{ name="Dan Helfman", email="witten@torsion.org" },
]
@ -37,8 +37,7 @@ Homepage = "https://torsion.org/borgmatic"
[build-system]
requires = ["setuptools>=61.0"]
# allow looking for conf in setup.{cfg,py}
#build-backend = "setuptools.build_meta"
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["borgmatic*"]