From ff07269847aef17e0d9fe9e5dec4ad46d4238e79 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 1 Sep 2020 23:23:16 +0200 Subject: [PATCH] pin setuptools to v49 --- CHANGELOG.md | 5 ++--- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9f5d3e..104a132 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,2 @@ -- ENHANCEMENT - - upgrade upstream version - - upgrade pinned requests library +- BUGFIX + - pin setuptools to v49 due to build issues with versions >= 50.0 diff --git a/Dockerfile b/Dockerfile index 58507a0..ea22142 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN apk add --update --no-cache --virtual .build-deps gcc make libffi-dev musl-d openssl-dev python3-dev && \ apk add --update --no-cache git openssh-client && \ echo "Installing ansible 'v$ANSIBLE_VERSION' ..." && \ - pip install -qq --upgrade --no-cache-dir pip setuptools requests~=2.23 && \ + pip install -qq --upgrade --no-cache-dir pip setuptools~=49.0 requests~=2.23 && \ pip install -qq --no-cache-dir ansible~="$ANSIBLE_VERSION" && \ echo "Installing requirements ..." && \ MOLECULE_VERSION="${MOLECULE_VERSION##v}" && \