From 503127233fa7e7e6fae5901a45270071f2051a6d Mon Sep 17 00:00:00 2001 From: Patrycja Date: Thu, 19 Oct 2023 22:05:16 +0200 Subject: [PATCH] Specify build system in pyproject.toml (#131) Otherwise, trying to build the project with a tool like gpep517 or build results in using the setuptools legacy backend instead --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 70dbfd2..7730d17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,7 @@ +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" + [tool.poetry] name = "django-q2" version = "1.6.1"