From 86e5e7d34729e0cb644e46d68af5c18348c94585 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Thu, 29 Mar 2018 15:59:40 +0200 Subject: [PATCH] Require Tornado < 5 Tornado 5 requires Python >= 2.7.9 because of improvements made to the `ssl` module in that version. Mopidy probably works with Tornado 5, but to keep tests running with Python 2.7.6 on Travis CI we don't support Tornado 5 for now. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d41c943d..0b96d025 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( 'Pykka >= 1.1', 'requests >= 2.0', 'setuptools', - 'tornado >= 3.2', + 'tornado >= 3.2, < 5', # Tornado 5 requires Python >= 2.7.9 ], extras_require={'http': []}, entry_points={