]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Upgrades to pipenv 2024.0.1 (#7019)
authorTrenton H <797416+stumpylog@users.noreply.github.com>
Tue, 18 Jun 2024 15:37:11 +0000 (08:37 -0700)
committerGitHub <noreply@github.com>
Tue, 18 Jun 2024 15:37:11 +0000 (08:37 -0700)
.github/workflows/ci.yml
Dockerfile

index d145f948c622a71cd1feebe0592e9df72011d49e..15fcc24b34817068ce31933bff17609d0e2ab8d9 100644 (file)
@@ -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"
 
index a49aa347b28dd7457544f40afdb68beb3db39094..4d53a0cc471b9224ce961a23d780029ed8b9bc2d 100644 (file)
@@ -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