Xqt has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/509074 )
Change subject: [bugfix] Don't use sseclient 0.0.23 and 0.0.24 ......................................................................
[bugfix] Don't use sseclient 0.0.23 and 0.0.24
0.0.23 is failing with Python <= 3.4 and 0.0.24 is failing with Python > 3.4 due to upstream reasons
Bug: T222885 Change-Id: I31666de097dd849e7103e85fbb1bdd328518d2d1 --- M requirements.txt M setup.py 2 files changed, 2 insertions(+), 2 deletions(-)
Approvals: jenkins-bot: Verified Dvorapa: Looks good to me, approved
diff --git a/requirements.txt b/requirements.txt index ec693c7..2c243b5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -47,7 +47,7 @@
# core pagegenerators google >= 1.7 -sseclient >= 0.0.18,!=0.0.23 +sseclient >= 0.0.18,!=0.0.23,!=0.0.24
# scripts/flickrripper.py flickrapi diff --git a/setup.py b/setup.py index e218e90..5ee9c9b 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@
extra_deps = { # Core library dependencies - 'eventstreams': ['sseclient>=0.0.18,!=0.0.23'], + 'eventstreams': ['sseclient>=0.0.18,!=0.0.23,!=0.0.24'], 'isbn': ['python-stdnum'], 'Graphviz': ['pydot>=1.2'], 'Google': ['google>=1.7'],
pywikibot-commits@lists.wikimedia.org