From bdc620e28d3e17c395d03166aebc06dbd0459f7c Mon Sep 17 00:00:00 2001 From: eranhd Date: Thu, 9 Jan 2025 23:19:49 +0200 Subject: [PATCH] Restrict poetry-core version to <2.0.0 in pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d2beb7f..afe2a99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,5 +39,5 @@ repository = "https://github.com/RedisLabsModules/RLTest" RLTest = 'RLTest.__main__:main' [build-system] -requires = ["poetry-core>=1.0.0"] +requires = ["poetry-core>=1.0.0,<2.0.0"] build-backend = "poetry.core.masonry.api"