tornado<5 is no longer supported

because it doesn't support Python 3.9
This commit is contained in:
lilydjwg 2020-02-18 16:16:44 +08:00
parent 47c434ae3e
commit 374ef20ad5
2 changed files with 2 additions and 3 deletions

View File

@ -21,8 +21,6 @@ env:
- DEPS=aiohttp
- DEPS="tornado pycurl"
- DEPS=tornado
- DEPS="tornado<5 pycurl"
- DEPS="tornado<5"
matrix:
fast_finish: true
allow_failures:

View File

@ -21,7 +21,7 @@ setup(
zip_safe = False,
packages = find_packages(exclude=["tests"]),
install_requires = ['setuptools', 'structlog', 'tornado', 'pycurl'],
install_requires = ['setuptools', 'structlog', 'tornado>=6', 'pycurl'],
extras_require = {
'vercmp': ['pyalpm'],
},
@ -53,6 +53,7 @@ setup(
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development",