From 1eedd3b871e16374f2c9fa7fdcdcaec9af0c3300 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 16 May 2021 15:31:38 -0400 Subject: [PATCH] updated to work with v0.9.3 --- .travis.yml | 4 ---- apprise_api/api/tests/test_stateful_notify.py | 1 - requirements.txt | 2 +- tox.ini | 18 +----------------- 4 files changed, 2 insertions(+), 23 deletions(-) diff --git a/.travis.yml b/.travis.yml index 394c670..66be5d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,10 +4,6 @@ dist: xenial matrix: include: - - python: "3.5" - env: TOXENV=py35 - - python: "3.6" - env: TOXENV=py36 - python: "3.7" env: TOXENV=py37 - python: "3.8" diff --git a/apprise_api/api/tests/test_stateful_notify.py b/apprise_api/api/tests/test_stateful_notify.py index 26f7fea..0b3f0b0 100644 --- a/apprise_api/api/tests/test_stateful_notify.py +++ b/apprise_api/api/tests/test_stateful_notify.py @@ -100,7 +100,6 @@ class StatefulNotifyTests(SimpleTestCase): # Reset our count mock_notify.reset_mock() - # Now we do a similar approach as the above except we remove the # configuration from under the application for _ in range(10): diff --git a/requirements.txt b/requirements.txt index 1bad073..8625c97 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ django -apprise >= 0.9.0 +apprise == 0.9.3 diff --git a/tox.ini b/tox.ini index 2144c81..6ad1152 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py35,py36,py37,py38,pypy3,coverage-report +envlist = py37,py38,pypy3,coverage-report skipsdist = true [testenv] @@ -14,22 +14,6 @@ commands = coverage run --parallel -m pytest {posargs} apprise_api flake8 apprise_api --count --show-source --statistics -[testenv:py35] -deps= - -r{toxinidir}/requirements.txt - -r{toxinidir}/dev-requirements.txt -commands = - coverage run --parallel -m pytest {posargs} apprise_api - flake8 apprise_api --count --show-source --statistics - -[testenv:py36] -deps= - -r{toxinidir}/requirements.txt - -r{toxinidir}/dev-requirements.txt -commands = - coverage run --parallel -m pytest {posargs} apprise_api - flake8 apprise_api --count --show-source --statistics - [testenv:py37] deps= -r{toxinidir}/requirements.txt