diff --git a/NEWS b/NEWS index cf69106a..364e82e6 100644 --- a/NEWS +++ b/NEWS @@ -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. diff --git a/pyproject.toml b/pyproject.toml index f685ad5c..fe9d6324 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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*"]