Pin tornado version in requirements file

tornado needs to be >= 4.2.1, but less that 5.0.

Tornado 5.0 is introducing backwards-incompatible changes. Therefore,
we need to pin the version of tornado in base.txt until we can fix
supporting Tornado 5.0 in Salt.

Refs #45790
This commit is contained in:
rallytime 2018-02-16 09:02:36 -05:00
parent 85761ee650
commit 6dc1a3b9dc
No known key found for this signature in database
GPG Key ID: E8F1A4B90D0DEA19

View File

@ -3,6 +3,6 @@ msgpack-python>0.3
PyYAML
MarkupSafe
requests>=1.0.0
tornado>=4.2.1
tornado>=4.2.1,<5.0
# Required by Tornado to handle threads stuff.
futures>=2.0