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.
This commit is contained in:
Stein Magnus Jodal 2018-03-29 15:59:40 +02:00
parent 1f09ef6b84
commit 86e5e7d347

View File

@ -27,7 +27,7 @@ setup(
'Pykka >= 1.1', 'Pykka >= 1.1',
'requests >= 2.0', 'requests >= 2.0',
'setuptools', 'setuptools',
'tornado >= 3.2', 'tornado >= 3.2, < 5', # Tornado 5 requires Python >= 2.7.9
], ],
extras_require={'http': []}, extras_require={'http': []},
entry_points={ entry_points={