Browse Source

Fix missing build backend setting in pyproject.toml to allow Fedora builds (#932).

Dan Helfman 6 months ago
parent
commit
bf978f2db4
2 changed files with 5 additions and 3 deletions
  1. 3 0
      NEWS
  2. 2 3
      pyproject.toml

+ 3 - 0
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.

+ 2 - 3
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*"]