From 7face004e406fb79ac81c108a7af4cee8d55f0a8 Mon Sep 17 00:00:00 2001 From: Chih-Hsuan Yen Date: Sun, 22 Jul 2018 20:10:57 +0800 Subject: [PATCH 1/3] Also test tornado<5 --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) 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: From 6afa9a551aa9d6030accf7f7c46c7184c2193622 Mon Sep 17 00:00:00 2001 From: Chih-Hsuan Yen Date: Sun, 22 Jul 2018 20:34:03 +0800 Subject: [PATCH 2/3] Fix test_anitya --- tests/test_anitya.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From d9872dad6b3bed766e8e76add080bac6e34f2416 Mon Sep 17 00:00:00 2001 From: Chih-Hsuan Yen Date: Sun, 22 Jul 2018 21:58:57 +0800 Subject: [PATCH 3/3] Relax tornado requirement I guess nobody is using tornado<4 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'], },