File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
ChangeLog
2
2
============
3
3
4
+ - 0.25.0
5
+
6
+ - fixed for Python 2.6(#151)
7
+
4
8
- 0.24.0
5
9
6
10
- Supporting http-basic auth in WebSocketApp (#143)
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
import sys
3
3
4
- VERSION = "0.24 .0"
4
+ VERSION = "0.25 .0"
5
5
NAME = "websocket-client"
6
6
7
7
install_requires = ["six" ]
8
- if sys .version_info . major == 2 :
9
- if sys .version_info . minor < 7 or (sys .version_info . minor == 7 and sys .version_info . micro < 9 ):
8
+ if sys .version_info [ 0 ] == 2 :
9
+ if sys .version_info [ 1 ] < 7 or (sys .version_info [ 1 ] == 7 and sys .version_info [ 2 ] < 9 ):
10
10
install_requires .append ('backports.ssl_match_hostname' )
11
- if sys .version_info . minor < 7 :
11
+ if sys .version_info [ 1 ] < 7 :
12
12
install_requires .append ('unittest2' )
13
13
install_requires .append ('argparse' )
14
14
Original file line number Diff line number Diff line change 22
22
from ._core import *
23
23
from ._app import WebSocketApp
24
24
25
- __version__ = "0.24 .0"
25
+ __version__ = "0.25 .0"
You can’t perform that action at this time.
0 commit comments