Change pinning of Tornado to include Tornado 6

This commit is contained in:
Gavin M. Roy 2019-03-05 14:17:31 -05:00
parent ef74068dd4
commit 33e4ceb704
3 changed files with 8 additions and 3 deletions

View file

@ -6,6 +6,10 @@ Release History
`Next Release`_
---------------
`2.0.1`_ (5 Mar 2019)
----------------------
- Include Tornado 6 in pin
`2.0.0`_ (27 Nov 2018)
----------------------
- Add support for Tornado 5.0
@ -133,4 +137,5 @@ Release History
.. _1.4.2: https://github.com/sprockets/sprockets.http/compare/1.4.1...1.4.2
.. _1.5.0: https://github.com/sprockets/sprockets.http/compare/1.4.2...1.5.0
.. _2.0.0: https://github.com/sprockets/sprockets.http/compare/1.5.0...2.0.0
.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.0.0...master
.. _2.0.1: https://github.com/sprockets/sprockets.http/compare/2.0.0...2.0.1
.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.0.1...master

View file

@ -1 +1 @@
tornado>=5,<6
tornado>=5,<7

View file

@ -3,7 +3,7 @@ import logging.config
import os
version_info = (2, 0, 0)
version_info = (2, 0, 1)
__version__ = '.'.join(str(v) for v in version_info)