From 3af774fb9a270ea84ea5e0cc71953610fc93f277 Mon Sep 17 00:00:00 2001 From: Alan Bernstein Date: Sat, 10 Apr 2021 09:53:49 -0500 Subject: [PATCH] Add dependency for python 3.4 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1aa4203..60b249f 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ 'toml >= 0.10.2' ], # No support for python 3.0, 3.1, 3.2. - ':python_version == "3.4"': ['ipython >= 6.0.0, < 7.0.0', 'toml >= 0.10.2'], + ':python_version == "3.4"': ['ipython >= 6.0.0, < 7.0.0', 'toml >= 0.10.2', 'decorator < 5.0.0'], ':python_version == "3.5"': ['ipython >= 7.0.0, < 7.10.0', 'toml >= 0.10.2'], ':python_version == "3.6"': ['ipython >= 7.10.0, < 7.17.0', 'toml >= 0.10.2'], ':python_version > "3.6"': ['ipython >= 7.17.0', 'toml >= 0.10.2'],