Skip to content

Commit

Permalink
Update setup.py (#54)
Browse files Browse the repository at this point in the history
aiohttp>=3.0.1 require python>=3.5.3 and can't be installed on version 3.5.2 or lower. 
https://github.com/aio-libs/aiohttp#requirements
  • Loading branch information
Seleznev-nvkz authored and youknowone committed Jun 16, 2018
1 parent 28a74b2 commit 7ec49bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def get_readme():
'pytest>=3.0.0', 'pytest-cov', 'tox', 'mock', 'patch',
]

if sys.version_info[:2] >= (3, 5):
if sys.version_info[:3] >= (3, 5, 3):
install_requires.extend([
'aiohttp>=3.0.1', 'aiodns>=1.1.1',
])
Expand Down

0 comments on commit 7ec49bc

Please sign in to comment.