Skip to content

Commit

Permalink
bump ver to 0.7.1 and add aiohttp 3.7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
pnuckowski committed Oct 28, 2020
1 parent 8c7d967 commit 01b6f81
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion aioresponses/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from .core import CallbackResult, aioresponses

__version__ = '0.7.0'
__version__ = '0.7.1'

__all__ = [
'CallbackResult',
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 01b6f81

Please sign in to comment.