diff --git a/.travis.yml b/.travis.yml index 1f01ef5..94cbfdf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/setup.py b/setup.py index 0ebda0c..613cc68 100755 --- a/setup.py +++ b/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",