From f4179adeb6cc0c7d0fc27ee09074f6566a3aa778 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Oto=20=C5=A0=C5=A5=C3=A1va?= Date: Thu, 14 Sep 2023 10:07:30 +0200 Subject: [PATCH] manager/pyproject.toml: correct Python version for poethepoet The former setup would cause subsequent runs of `poetry install` to alternate between the `poethepoet` versions. Instead, we just want to separate them for Python before 3.8 and Python from 3.8 onwards. --- manager/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/pyproject.toml b/manager/pyproject.toml index c1f70b1aa..03cb2ac7f 100644 --- a/manager/pyproject.toml +++ b/manager/pyproject.toml @@ -26,7 +26,7 @@ prometheus-client = "*" poetry = "^1.4.2" pyparsing = "^3.0.9" poethepoet = [ - { version = "^0.18.1", python = "^3.7" }, + { version = "^0.18.1", python = "~3.7" }, { version = "^0.22.0", python = "^3.8" } ] debugpy = "^1.6.7" -- 2.47.2