From 4b1415a081140d9f9633d169a8c16e04e4967358 Mon Sep 17 00:00:00 2001 From: Lawson Lewis Date: Mon, 22 Apr 2024 09:23:58 +1000 Subject: [PATCH] pin poetry-core version to >=1.9.0 Changes to packaging declarations in PR #223 introduced a dependency on a feature in this version of poetry-core. Specifically the use of a 'to=' statement in the packages array. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0d1d52ad..fdaa21ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ pyoxigraph = "^0.3.19" coverage = "^7.3.2" [build-system] -requires = ["poetry-core>=1.0.0"] +requires = ["poetry-core>=1.9.0"] build-backend = "poetry.core.masonry.api" [tool.black]