Skip to content

Commit

Permalink
python 2.7 fix
Browse files Browse the repository at this point in the history
versions above 0.59.0 of websocket-client lib dropped support for python 2.7
  • Loading branch information
s4w3d0ff authored Jun 25, 2021
1 parent c8294bb commit 845cbc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
read_md = lambda f: open(f, 'r').read()

setup(name='poloniexapi',
version='0.5.7',
version='0.5.8',
description='Poloniex API wrapper for Python 2.7 and 3 with websocket support',
long_description=read_md('README.md'),
long_description_content_type='text/markdown',
Expand All @@ -12,7 +12,7 @@
author_email="[email protected]",
license='GPL v2',
packages=['poloniex'],
install_requires=['requests', 'websocket_client'],
install_requires=['requests', 'websocket_client==0.59.0'],
zip_safe=False,
keywords=['poloniex', 'poloniexapi', 'exchange', 'api', 'cryptocoin', 'tradebot', 'polo', 'websocket', 'rest', 'push'],
classifiers = [
Expand Down

0 comments on commit 845cbc7

Please sign in to comment.