Skip to content

Commit

Permalink
upgrade to sphinx 7 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
johrstrom authored Dec 27, 2024
1 parent c69cd21 commit 5763cb9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.9
FROM alpine:3.20
LABEL maintainer="OSC"

# Set language to avoid bugs that sometimes appear
Expand Down Expand Up @@ -28,8 +28,8 @@ RUN apk add --no-cache --virtual .ssl-deps \
# Install Sphinx and extras
ADD requirements.txt /tmp/

RUN python3 -m pip install wheel \
&& python3 -m pip install -r /tmp/requirements.txt \
RUN python3 -m pip install wheel --break-system-packages \
&& python3 -m pip install -r /tmp/requirements.txt --break-system-packages \
&& rm -rf /tmp/requirements.txt

# Add ruby gems we need to build
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sphinx==2.4.5
sphinx-rtd-theme==0.4.3
sphinxcontrib-plantuml==0.15
sphinx==7.4.6
sphinx-rtd-theme==2.0.0
sphinxcontrib-plantuml==0.30
sphinxcontrib-httpdomain==1.7.0
docutils==0.14
sphinx-tabs==3.3.1
docutils==0.20
sphinx-tabs==3.4.5

0 comments on commit 5763cb9

Please sign in to comment.