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=aiohttp
- DEPS="tornado pycurl" - DEPS="tornado pycurl"
- DEPS=tornado - DEPS=tornado
- DEPS="tornado<5 pycurl"
- DEPS="tornado<5"
matrix: matrix:
fast_finish: true fast_finish: true
allow_failures: allow_failures:

View file

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