tornado<5 is no longer supported
because it doesn't support Python 3.9
This commit is contained in:
parent
47c434ae3e
commit
374ef20ad5
|
@ -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:
|
||||
|
|
3
setup.py
3
setup.py
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue