File 0001-Use-poetry-core-for-pyproject-based-builds.patch of Package python-pyrad
From ffe182a44909e8f8278fb3e2ea052ddc097b48b9 Mon Sep 17 00:00:00 2001
From: Martin Weinelt <hexa@darmstadt.ccc.de>
Date: Thu, 14 Apr 2022 22:07:37 +0200
Subject: [PATCH] Use poetry-core for pyproject based builds
https://github.com/python-poetry/poetry-core#why-is-this-required
---
pyproject.toml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
mode change 100755 => 100644 pyproject.toml
diff --git a/pyproject.toml b/pyproject.toml
old mode 100755
new mode 100644
index 87b1df3..3505042
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[build-system]
-requires = ["poetry>=1.0"]
-build-backend = "poetry.masonry.api"
+requires = ["poetry-core"]
+build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pyrad"
--
2.48.1