From c305b9b88cd9156ccad2dd5a5a1e7725c2b08ca3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Thu, 14 May 2020 21:22:05 +0200 Subject: [PATCH] fix: Forbid version of `asciimatics` below 1.11.0 Fixes #57 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dac3a1d..0a1449c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ python = "^3.6" requests = "*" loguru = "*" websocket_client = "*" -asciimatics = { version = "*", optional = true } +asciimatics = { version = "^1.11.0", optional = true } [tool.poetry.dev-dependencies] bandit = "^1.5"