From fb2d5d37e90e96f26d5a3c06d58ea66f7f4b3a7d Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 19 Aug 2020 21:37:43 +0200 Subject: [PATCH] upgrade pinned requests library --- CHANGELOG.md | 2 +- Dockerfile | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cfe146..f02a5b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,2 @@ - ENHANCEMENT - - update ansible to v2.9.12 + - upgrade pinned requests library diff --git a/Dockerfile b/Dockerfile index 7e46191..58507a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,10 +20,8 @@ COPY overlay/ / RUN apk add --update --no-cache --virtual .build-deps gcc make libffi-dev musl-dev \ openssl-dev python3-dev && \ apk add --update --no-cache git openssh-client && \ - # Required to fix hcloud dependency: - # hcloud 1.6.3 has requirement requests<2.23,>=2.20, but you'll have requests 2.23.0 echo "Installing ansible 'v$ANSIBLE_VERSION' ..." && \ - pip install -qq --upgrade --no-cache-dir pip setuptools requests~=2.22.0 && \ + pip install -qq --upgrade --no-cache-dir pip setuptools requests~=2.23 && \ pip install -qq --no-cache-dir ansible~="$ANSIBLE_VERSION" && \ echo "Installing requirements ..." && \ MOLECULE_VERSION="${MOLECULE_VERSION##v}" && \