Skip to content

Commit

Permalink
Fixed support for python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
reefab committed Feb 14, 2018
1 parent 23f301d commit e9f5abf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: python
python:
- "3.4"
- "3.5"
- "3.6"
install: pip install tox-travis python-coveralls
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setuptools.setup(
name="foobot_async",
version="0.2.0",
version="0.3.0",
url="https://github.com/reefab/foobot_async",

author="Fabien Piuzzi",
Expand All @@ -13,13 +13,14 @@

packages=setuptools.find_packages(),

install_requires=['aiohttp', 'async_timeout'],
install_requires=['aiohttp==2.3.10', 'async_timeout', 'typing>=3,<4'],
zip_safe=True,

classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
Expand Down

0 comments on commit e9f5abf

Please sign in to comment.