From d5b29f700fce52272043fb8eb5afc7c16d752418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Mon, 2 Nov 2015 15:00:16 +0100 Subject: [PATCH] Lock the prompt-toolkit version to 0.38 The newer 0.54 isn't API-compatible. --- src/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setup.py b/src/setup.py index a112143..c86eee4 100755 --- a/src/setup.py +++ b/src/setup.py @@ -87,7 +87,7 @@ setup( url="http://www.frida.re", install_requires=[ "colorama >= 0.2.7", - "prompt-toolkit >= 0.38", + "prompt-toolkit == 0.38", "pygments >= 2.0.2" ], license="wxWindows Library Licence, Version 3.1",