From 05188aed6db2b0fe9a9f886939ff164478ec0c08 Mon Sep 17 00:00:00 2001 From: Trenton Holmes <797416+stumpylog@users.noreply.github.com> Date: Sun, 18 Jun 2023 09:46:49 -0700 Subject: [PATCH] Bumps our locked pipenv version for CI and Docker image builds --- .github/workflows/ci.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34375399e..9809479fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ on: env: # This is the version of pipenv all the steps will use # If changing this, change Dockerfile - DEFAULT_PIP_ENV_VERSION: "2023.4.20" + DEFAULT_PIP_ENV_VERSION: "2023.6.12" # This is the default version of Python to use in most steps # If changing this, change Dockerfile DEFAULT_PYTHON_VERSION: "3.9" diff --git a/Dockerfile b/Dockerfile index 43471f6a1..23fd384fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ COPY Pipfile* ./ RUN set -eux \ && echo "Installing pipenv" \ - && python3 -m pip install --no-cache-dir --upgrade pipenv==2023.4.20 \ + && python3 -m pip install --no-cache-dir --upgrade pipenv==2023.6.12 \ && echo "Generating requirement.txt" \ && pipenv requirements > requirements.txt