mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
tornado<5 is no longer supported
because it doesn't support Python 3.9
This commit is contained in:
parent
47c434ae3e
commit
374ef20ad5
2 changed files with 2 additions and 3 deletions
|
@ -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:
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -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",
|
||||||
|
|
Loading…
Add table
Reference in a new issue