From 2028c44b844b73af0ed3a7a1b249e6579a243aec Mon Sep 17 00:00:00 2001 From: Christophe Blefari Date: Fri, 31 Jan 2025 23:13:59 +0100 Subject: [PATCH] Prevent usage of poetry>2.0.0 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5a38805..bc4cd7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yato-lib" -version = "0.0.15" +version = "0.0.16" authors = ["Christophe Blefari "] license = "MIT" description = "The smallest DuckDB SQL transformations orchestrator" @@ -40,7 +40,7 @@ line-length = 120 line_length = 120 profile = "black" [build-system] -requires = ["poetry-core>=1.0.8"] +requires = ["poetry-core<2.0.0"] build-backend = "poetry.core.masonry.api" [project.urls] Homepage = "https://github.com/Bl3f/yato"