Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Fixed thread cleanup
- Fixed disconnect detection if defined directly thanks to Andreas Strikos
- Fixed support for unicode payloads
- Converted dependency links to PEP 508

0.6
---
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
])
setup(
name='socketIO-client',
version='0.7.7',
version='0.7.8',
description='A socket.io client library',
long_description=DESCRIPTION,
license='MIT',
Expand All @@ -25,13 +25,10 @@
author='Roy Hyunjin Han',
author_email='rhh@crosscompute.com',
url='https://github.com/invisibleroads/socketIO-client',
dependency_links=[
'git+https://github.com/ARMmbed/websocket-client@v0.51.0-1#egg=websocket-client-0.51.0-1'
],
install_requires=[
'requests>=2.7.0',
'six',
'websocket-client==0.51.0-1'
'websocket-client @ https://github.com/ARMmbed/websocket-client/archive/v0.51.0-1.zip'
],
tests_require=[
'nose',
Expand Down