jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/587962 )
Change subject: [bugfix] Update setuptools in Docker image ......................................................................
[bugfix] Update setuptools in Docker image
Pywikibot needs setuptools >= 40.1.0, but Python 3.5 on Debian Stretch comes with older one.
Change-Id: I9c8234f8b03792cab46653c7fcac615dd372515b --- M Dockerfile 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: Dvorapa: Looks good to me, approved Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/Dockerfile b/Dockerfile index e4bcd00..0ec66fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ ADD . /srv/pwb
# pip version in stretch is too old :( +RUN pip3 install -U setuptools RUN pip3 install -U pip
RUN pip3 install -r /srv/pwb/requirements.txt