From d90a4a10f4d9d90c0979b80951eb3c0d482bbeb9 Mon Sep 17 00:00:00 2001 From: Stephan Lukasczyk Date: Mon, 31 Aug 2020 14:21:14 +0200 Subject: [PATCH] Change build backend The introduction of REUSE compatibility breaks the build of the wheel file. https://github.com/python-poetry/poetry-core/pull/57 closed the issue on the poetry side, although `poetry-core` has not yet been updated. Nevertheless, I still do this change now, to have it available for future releases. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 233ad513..6cf66d28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -125,5 +125,5 @@ testpaths = [ python_classes = '' [build-system] -requires = ["poetry>=0.12"] -build-backend = "poetry.masonry.api" +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"