jenkins-bot has submitted this change and it was merged.
Change subject: Set minimum requirement of websocket-client ......................................................................
Set minimum requirement of websocket-client
setup.py and requirements.txt are updated to set minumum requirement of websocket-client to 0.33 for socketIO-client to work.
Bug: T114913 Change-Id: Ifacd0049f2dabe5581ee95937c5a3a3f0d7aaf94 --- M requirements.txt M setup.py 2 files changed, 5 insertions(+), 1 deletion(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/requirements.txt b/requirements.txt index 9b4400a..0aeb72d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -54,6 +54,9 @@ google >= 1.7 socketIO-client<0.6.1
+# websocket-client>=0.33 is required by socketIO-client (T114913) +websocket-client>=0.33 + # scripts/script_wui.py: crontab
diff --git a/setup.py b/setup.py index 06f3f03..f688df5 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,8 @@ 'mwparserfromhell': ['mwparserfromhell>=0.3.3'], 'Tkinter': ['Pillow'], # 0.6.1 supports socket.io 1.0, but WMF is using 0.9 (T91393 and T85716) - 'rcstream': ['socketIO-client<0.6.1'], + # websocket-client>=0.33 is required by socketIO-client (T114913) + 'rcstream': ['socketIO-client<0.6.1', 'websocket-client>=0.33'], 'security': ['requests[security]'], 'mwoauth': ['mwoauth>=0.2.4'], 'html': ['BeautifulSoup4'],