diff --git a/.travis.yml b/.travis.yml index 1a695c1..d4094b6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,8 @@ 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 0d2a8b8..2cc4e28 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( zip_safe = False, packages = find_packages(exclude=["tests"]), - install_requires = ['setuptools', 'structlog', 'tornado>=5', 'pycurl'], + install_requires = ['setuptools', 'structlog', 'tornado', 'pycurl'], extras_require = { 'vercmp': ['pyalpm'], }, diff --git a/tests/test_anitya.py b/tests/test_anitya.py index cc343d4..8ec7943 100644 --- a/tests/test_anitya.py +++ b/tests/test_anitya.py @@ -5,4 +5,4 @@ import pytest pytestmark = pytest.mark.asyncio async def test_anitya(get_version): - assert await get_version("shutter", {"anitya": "fedora/shutter"}) == "0.93.1" + assert await get_version("shutter", {"anitya": "fedora/shutter"}) == "0.94"