From 634a001c92a1dff1fae513fc95d733ea9b87e4cf Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Fri, 9 Jun 2023 17:28:44 +0200 Subject: [PATCH] chore(poetry): use poetry-core Before 1.1.0, it made sense to use poetry as a PEP517 build backend but now that https://pypi.org/project/poetry-core/ exist, it's a lightweight alternative that does not require installing Poetry for this. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index eaa6bdc..a5652d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,5 +18,5 @@ pytest-cov = "*" pytest-celery = "*" [build-system] -requires = ["poetry>=0.12"] -build-backend = "poetry.masonry.api" +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"