From 7f36a04aaece28acf16a61fe7b87a5869aab3ac5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Wed, 6 Jan 2021 09:52:56 +0100 Subject: [PATCH] fix: Always depend on appdirs (not only in tui extra) --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 86b2de9..1ad2b86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,16 +20,16 @@ include = [ [tool.poetry.dependencies] python = "^3.6" -requests = ">2.19.1" +appdirs = "^1.4.4" loguru = "*" -websocket_client = "*" +requests = ">2.19.1" toml = "^0.10.2" +websocket_client = "*" asciimatics = {version = "^1.11.0", optional = true} -appdirs = {version = "^1.4.4", optional = true} pyperclip = {version = "^1.8.0", optional = true} [tool.poetry.extras] -tui = ["appdirs", "asciimatics", "pyperclip"] +tui = ["asciimatics", "pyperclip"] [tool.poetry.dev-dependencies] asciimatics = "^1.11.0"