Skip to content

Commit

Permalink
Merge pull request #4 from Rycerzyk/master
Browse files Browse the repository at this point in the history
Compatibility with python 3.7
  • Loading branch information
bujniewicz committed Dec 24, 2018
2 parents b59a335 + 8a8855c commit 4340a14
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ Contributors
============
Krzysztof Bujniewicz, 2015-10-27
Henrik Heimbuerger, 2016-10-23
Andrzej Buczyński, 2018-07-05
2 changes: 1 addition & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ setup.cfg
setup.py
devourer/__init__.py
devourer/api.py
devourer/async.py
devourer/async_api.py
devourer/tests.py
2 changes: 1 addition & 1 deletion devourer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@
"""
from .api import GenericAPI, APIMethod, APIError, PrepareCallArgs, GenericAPICreator, GenericAPIBase
from .async import AsyncAPI, AsyncAPIBase
from .async_api import AsyncAPI, AsyncAPIBase
2 changes: 1 addition & 1 deletion devourer/async_api.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
.. module:: async
.. module:: async_api
:platform: Unix, Windows
:synopsis: This module extends basic api with gevent-based async capabilities.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name='devourer',
packages=['devourer'],
version='0.4.7',
version='0.4.8',
install_requires=[
'requests',
'futures',
Expand All @@ -14,7 +14,7 @@
author='Bonnier Business Polska / Krzysztof Bujniewicz',
author_email='racech@gmail.com',
url='https://github.com/bonnierpolska/devourer',
download_url='https://github.com/bonnierpolska/devourer/tarball/0.4.5',
download_url='https://github.com/bonnierpolska/devourer/tarball/0.4.8',
keywords=['api', 'generic api', 'api client'],
classifiers=[]
)

0 comments on commit 4340a14

Please sign in to comment.