diff --git a/.travis.yml b/.travis.yml index b69dcb8..481f326 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,8 @@ matrix: env: TOXENV=py36-aiohttp35 - python: 3.6 env: TOXENV=py36-aiohttp36 + - python: 3.6 + env: TOXENV=py36-aiohttp37 - python: 3.7 dist: xenial @@ -32,6 +34,9 @@ matrix: - python: 3.7 dist: xenial env: TOXENV=py37-aiohttp36 + - python: 3.7 + dist: xenial + env: TOXENV=py37-aiohttp37 - python: 3.8 dist: xenial @@ -45,6 +50,9 @@ matrix: - python: 3.8 dist: xenial env: TOXENV=py38-aiohttp36 + - python: 3.8 + dist: xenial + env: TOXENV=py38-aiohttp37 # - python: 3.8 # dist: xenial # env: TOXENV=py38-aiohttp-master diff --git a/aioresponses/__init__.py b/aioresponses/__init__.py index 8a73f66..a769c63 100644 --- a/aioresponses/__init__.py +++ b/aioresponses/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from .core import CallbackResult, aioresponses -__version__ = '0.7.0' +__version__ = '0.7.1' __all__ = [ 'CallbackResult', diff --git a/tox.ini b/tox.ini index f4320bd..2d10667 100644 --- a/tox.ini +++ b/tox.ini @@ -2,9 +2,9 @@ envlist = flake8, coverage, - py36-aiohttp{30,31,32,33,34,35,36} - py37-aiohttp{30,31,32,33,34,35,36} - py38-aiohttp{30,31,32,33,34,35,36} + py36-aiohttp{30,31,32,33,34,35,36,37} + py37-aiohttp{30,31,32,33,34,35,36,37} + py38-aiohttp{30,31,32,33,34,35,36,37} skipsdist = True [testenv:flake8] @@ -33,6 +33,7 @@ deps = aiohttp34: aiohttp>=3.4,<3.5 aiohttp35: aiohttp>=3.5,<3.6 aiohttp36: aiohttp>=3.6,<3.7 + aiohttp37: aiohttp>=3.7,<3.8 aiohttp-master: https://github.com/aio-libs/aiohttp/archive/master.tar.gz -r{toxinidir}/requirements-dev.txt