From 629cd13c1ba39bbc32b28469088b80ce33272bbe Mon Sep 17 00:00:00 2001 From: dpemmerich Date: Fri, 3 Sep 2021 19:26:41 +0000 Subject: [PATCH] set poetry version to 1.1.7 --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index bdebffc1..3d756c3a 100644 --- a/tasks.py +++ b/tasks.py @@ -210,7 +210,7 @@ def install_core(c: Context, hide: bool) -> None: def install_poetry(c: Context, dev: bool, local: bool, hide: bool) -> None: - c.run("pipx install poetry", hide=hide) + c.run("pipx install poetry==1.1.7", hide=hide) if local: with c.cd(DAEMON_DIR): c.run("poetry build -f wheel", hide=hide)