From c01755a98993c8e95e7316a8ab25000c0787fb2e Mon Sep 17 00:00:00 2001
From: Adam Turner <9087854+aa-turner@users.noreply.github.com>
Date: Tue, 23 Apr 2024 19:55:42 +0100
Subject: [PATCH] Bump to 7.3.7
---
base/Dockerfile | 4 ++--
latexpdf/Dockerfile | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/base/Dockerfile b/base/Dockerfile
index 30ef790..8e96211 100644
--- a/base/Dockerfile
+++ b/base/Dockerfile
@@ -3,7 +3,7 @@ FROM python:slim
LABEL org.opencontainers.image.authors="Sphinx Team "
LABEL org.opencontainers.image.documentation="https://sphinx-doc.org/"
LABEL org.opencontainers.image.source="https://github.com/sphinx-doc/sphinx-docker-images"
-LABEL org.opencontainers.image.version="7.3.6"
+LABEL org.opencontainers.image.version="7.3.7"
LABEL org.opencontainers.image.licenses="BSD-2-Clause"
LABEL org.opencontainers.image.description="Base container image for Sphinx"
@@ -18,6 +18,6 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*
RUN python3 -m pip install --no-cache-dir --upgrade pip \
- && python3 -m pip install --no-cache-dir Sphinx==7.3.6 Pillow
+ && python3 -m pip install --no-cache-dir Sphinx==7.3.7 Pillow
CMD ["sphinx-build", "-M", "html", ".", "_build"]
diff --git a/latexpdf/Dockerfile b/latexpdf/Dockerfile
index 75fa2ef..e2d2bb4 100644
--- a/latexpdf/Dockerfile
+++ b/latexpdf/Dockerfile
@@ -3,7 +3,7 @@ FROM python:slim
LABEL org.opencontainers.image.authors="Sphinx Team "
LABEL org.opencontainers.image.documentation="https://sphinx-doc.org/"
LABEL org.opencontainers.image.source="https://github.com/sphinx-doc/sphinx-docker-images"
-LABEL org.opencontainers.image.version="7.3.6"
+LABEL org.opencontainers.image.version="7.3.7"
LABEL org.opencontainers.image.licenses="BSD-2-Clause"
LABEL org.opencontainers.image.description="LaTeX container image for Sphinx"
@@ -33,6 +33,6 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*
RUN python3 -m pip install --no-cache-dir --upgrade pip \
- && python3 -m pip install --no-cache-dir Sphinx==7.3.6 Pillow
+ && python3 -m pip install --no-cache-dir Sphinx==7.3.7 Pillow
CMD ["sphinx-build", "-M", "latexpdf", ".", "_build"]