Skip to content

Commit

Permalink
Merge pull request #15 from alfred82santa/feature/update-aiohttp-2.0.0
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
alfred82santa committed Apr 26, 2017
2 parents 2e56c5d + 4f25c29 commit acc0b15
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,12 @@ In order to send a payload you must use ``payload`` keyword on call:
Changelog
=========


v0.5.4
------

- Made compatible with aiohttp 2.0.x.

v0.5.2
------

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dirty-loader >= 0.2.2
git+https://github.com/alfred82santa/configure.git
aiohttp >= 1.1.2
aiohttp >= 2.0.0
2 changes: 1 addition & 1 deletion service_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .utils import ObjectWrapper


__version__ = '0.5.3'
__version__ = '0.5.4'


class ServiceClient:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
'Development Status :: 4 - Beta'],
packages=['service_client'],
include_package_data=False,
install_requires=['dirty-loader>=0.2.2', 'aiohttp>=1.1.0'],
install_requires=['dirty-loader>=0.2.2', 'aiohttp>=2.0.0'],
description="Service Client Framework powered by Python asyncio.",
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
test_suite="nose.collector",
Expand Down

0 comments on commit acc0b15

Please sign in to comment.