forked from dn0/gevent-socketio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Releasing new version under the name "gevent-socketio-es" with follow…
…ing changes/merge requests: * Setting Content-Length Headers to Strings - abourget#241 (by https://github.com/richardardrichard) * Stop re-raising exception on dead websocket - abourget#240 (by https://github.com/richardardrichard) * Fixed import to support Django>=1.9 - abourget#236 (by https://github.com/chrisspen) * Fix cfg_addr error on socket object - copied from abourget#200 (by https://github.com/shuoli84) * Fixes unicode error with newest gevent - abourget#221 (by https://github.com/bobvandevijver) * Fixes memory leak issue - abourget#225 (by https://github.com/chrismeyersfsu) * Full Python 2+3 support - commit 12da966 (by https://github.com/Eugeny) * Travis script fix - commit 13cd65e (by https://github.com/Eugeny)
- Loading branch information
Showing
3 changed files
with
20 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,18 +28,18 @@ def run_tests(self): | |
pytest.main(self.test_args) | ||
|
||
setup( | ||
name="gevent-socketio", | ||
version="0.3.6", | ||
name="gevent-socketio-es", | ||
version="0.3.7", | ||
description=( | ||
"SocketIO server based on the Gevent pywsgi server, " | ||
"a Python network library"), | ||
author="Jeffrey Gelens", | ||
author_email="[email protected]", | ||
maintainer="Alexandre Bourget", | ||
maintainer_email="[email protected]", | ||
maintainer="Erigones", | ||
maintainer_email="erigones [at] erigones.com", | ||
license="BSD", | ||
url="https://github.com/abourget/gevent-socketio", | ||
download_url="https://github.com/abourget/gevent-socketio", | ||
url="https://github.com/erigones/gevent-socketio", | ||
download_url="https://github.com/erigones/gevent-socketio", | ||
install_requires=get_reqs('pip-requirements.txt'), | ||
setup_requires=('versiontools >= 1.7'), | ||
cmdclass = {'test': PyTest}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = (0, 3, 5) | ||
__version__ = (0, 3, 7) | ||
|
||
import logging | ||
import gevent | ||
|