From 830e54d6a3d0a22a09204a5b22e019146cb9eb0b Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Tue, 13 May 2025 12:49:10 +0100 Subject: [PATCH] Allow poetry-core==2.1.3 when building wheels A `poetry-core` version >=2.0 is required to understand the latest changes to `pyproject.toml`. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5c6cd43abe..e40679b742 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -385,7 +385,7 @@ tomli = ">=1.2.3" # runtime errors caused by build system changes. # We are happy to raise these upper bounds upon request, # provided we check that it's safe to do so (i.e. that CI passes). -requires = ["poetry-core>=1.1.0,<=1.9.1", "setuptools_rust>=1.3,<=1.10.2"] +requires = ["poetry-core>=2.0.0,<=2.1.3", "setuptools_rust>=1.3,<=1.10.2"] build-backend = "poetry.core.masonry.api"