Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade to sphinx 7 #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading