Update Tornado depencency to <5.0 for now.

Fixes #71.
This commit is contained in:
Shiz 2018-03-14 05:05:08 +01:00
parent 60ede96669
commit 9c5c4b87d3
3 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@ -4,7 +4,9 @@ __pycache__
*.swp *.swp
*.swo *.swo
/env
/docs/_build /docs/_build
/.coverage /.coverage
/.tox /.tox
/*.egg-info /*.egg-info

View File

@ -1,2 +1,2 @@
tornado tornado==4.5.3
-e git+https://github.com/thobbs/pure-sasl#egg=pure-sasl -e git+https://github.com/thobbs/pure-sasl#egg=pure-sasl

View File

@ -10,7 +10,7 @@ setup(
'pydle.features.ircv3', 'pydle.features.ircv3',
'pydle.utils' 'pydle.utils'
], ],
install_requires=['tornado'], install_requires=['tornado==4.5.3'],
extras_require={ extras_require={
'sasl': 'pure-sasl >=0.1.6', # for pydle.features.sasl 'sasl': 'pure-sasl >=0.1.6', # for pydle.features.sasl
'docs': 'sphinx_rtd_theme', # the Sphinx theme we use 'docs': 'sphinx_rtd_theme', # the Sphinx theme we use