From 812c19b29981eac2f465faf3a4ea21f5b754f85c Mon Sep 17 00:00:00 2001 From: Rick Staa Date: Tue, 12 Dec 2023 18:32:37 +0100 Subject: [PATCH] fix: pin black to 23.11.0 (#19) This commit temporary pins black to 23.11.0 since version https://github.com/psf/black/releases/tag/23.12.0 breaks this action (see #18). --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5397feb..7c0172c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3-slim ENV PYTHONDONTWRITEBYTECODE 1 \ PYTHONUNBUFFERED 1 -RUN python -m venv venv && . venv/bin/activate && pip install --upgrade pip && venv/bin/pip install --upgrade --no-cache-dir black +RUN python -m venv venv && . venv/bin/activate && pip install --upgrade pip && venv/bin/pip install --upgrade --no-cache-dir black==23.11.0 COPY entrypoint.sh /entrypoint.sh