From b37790d4396a6e039a6f028b5b3d3599f19eb095 Mon Sep 17 00:00:00 2001 From: Elad Ben-Israel Date: Wed, 14 Aug 2019 19:44:56 +0300 Subject: [PATCH] fix(superchain): fix python distribution due to old setuptools (#709) Upgrade the python `setuptools` modules to latest in order to enable support for the `long_description_content_type` distribution option. Fixes #708 --- superchain/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superchain/Dockerfile b/superchain/Dockerfile index 1d7ffdf53f..3201a2f4e7 100644 --- a/superchain/Dockerfile +++ b/superchain/Dockerfile @@ -43,7 +43,7 @@ RUN yum install -y powershell # Install Python 3 RUN yum -y install python3 python3-pip python3-wheel \ - && python3 -m pip install --upgrade pip wheel \ + && python3 -m pip install --upgrade pip wheel setuptools \ && yum clean all && rm -rf /var/cache/yum # Install Ruby 2.4+