From f5e7b078f218a081b8a1ea04c1339b622d9b5c21 Mon Sep 17 00:00:00 2001 From: Stavros Ntentos <133706+stdedos@users.noreply.github.com> Date: Fri, 3 Jul 2020 10:58:33 +0300 Subject: [PATCH] Force `prompt-toolkit >= 2` Since all the fuss in https://github.com/xyb/robotframework-debuglibrary/issues/36 was about "`prompt-toolkit` v1 being incompatible with v2", we need to enforce it. This commit partially reverts 92d01ac0dd1c9d2735ad60fdc39b15fe84d31231. Signed-off-by: Stavros Ntentos <133706+stdedos@users.noreply.github.com> --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e832160..1768907 100755 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def find_version(*file_paths): url='https://github.com/xyb/robotframework-debuglibrary/', keywords='robotframework,debug,shell,repl', install_requires=[ - 'prompt-toolkit < 3', # 3.0 is not compatible with py3.5 + 'prompt-toolkit >= 2, < 3', # 3.0 is not compatible with py3.5 'robotframework >= 3.0', ], tests_require=['pexpect', 'coverage'],