From 293a06467ab551ae1f5404e1ce307c6cc34a20a5 Mon Sep 17 00:00:00 2001 From: Martijn Pieters Date: Tue, 16 May 2023 11:03:53 +0100 Subject: [PATCH] Use poetry-core as the build system Poetry core is the lighter-weight build system for poetry; this makes installing the project faster. --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2f5e6fb..b25fc31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,10 +44,6 @@ coverage = "^6.5.0" httpx = "*" tox = "^4.5.1" -[build-system] -requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api" - [tool.poetry.extras] redis = ["redis"] memcache = ["aiomcache"] @@ -85,3 +81,7 @@ ignore_errors = true include = ["fastapi_cache", "tests", "examples"] strict = ["fastapi_cache", "tests"] pythonVersion = "3.7" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"