From 2ad0f8325cd3d486820ce6edceb10767517b69f2 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Tue, 18 Jun 2024 08:37:11 -0700 Subject: [PATCH] Upgrades to pipenv 2024.0.1 (#7019) --- .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 d145f948c..15fcc24b3 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.12.1" + DEFAULT_PIP_ENV_VERSION: "2024.0.1" # This is the default version of Python to use in most steps which aren't specific DEFAULT_PYTHON_VERSION: "3.10" diff --git a/Dockerfile b/Dockerfile index a49aa347b..4d53a0cc4 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.12.1 \ + && python3 -m pip install --no-cache-dir --upgrade pipenv==2024.0.1 \ && echo "Generating requirement.txt" \ && pipenv requirements > requirements.txt