- fixed #151 for python2.6
This commit is contained in:
parent
2d02228134
commit
10bbe19c1a
@ -1,6 +1,10 @@
|
||||
ChangeLog
|
||||
============
|
||||
|
||||
- 0.25.0
|
||||
|
||||
- fixed for Python 2.6(#151)
|
||||
|
||||
- 0.24.0
|
||||
|
||||
- Supporting http-basic auth in WebSocketApp (#143)
|
||||
|
8
setup.py
8
setup.py
@ -1,14 +1,14 @@
|
||||
from setuptools import setup
|
||||
import sys
|
||||
|
||||
VERSION = "0.24.0"
|
||||
VERSION = "0.25.0"
|
||||
NAME="websocket-client"
|
||||
|
||||
install_requires = ["six"]
|
||||
if sys.version_info.major == 2:
|
||||
if sys.version_info.minor < 7 or (sys.version_info.minor == 7 and sys.version_info.micro < 9):
|
||||
if sys.version_info[0] == 2:
|
||||
if sys.version_info[1] < 7 or (sys.version_info[1] == 7 and sys.version_info[2]< 9):
|
||||
install_requires.append('backports.ssl_match_hostname')
|
||||
if sys.version_info.minor < 7:
|
||||
if sys.version_info[1] < 7:
|
||||
install_requires.append('unittest2')
|
||||
install_requires.append('argparse')
|
||||
|
||||
|
@ -22,4 +22,4 @@ Copyright (C) 2010 Hiroki Ohtani(liris)
|
||||
from ._core import *
|
||||
from ._app import WebSocketApp
|
||||
|
||||
__version__ = "0.24.0"
|
||||
__version__ = "0.25.0"
|
||||
|
Loading…
x
Reference in New Issue
Block a user