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

Update Sphinx to 5.0.0 #258

Merged
merged 8 commits into from
Feb 13, 2024
Merged
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
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8.18-bullseye
FROM python:3.9.18-bullseye
WORKDIR /app
COPY . .
RUN apt-get update && apt-get install -y texlive-latex-recommended texlive-fonts-recommended texlive-latex-extra latexmk texlive-lang-greek texlive-luatex texlive-xetex texlive-fonts-extra dvipng librsvg2-bin git fonts-roboto
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/booklets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Python Setup
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
cache: 'pip'

- name: Python Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/link-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Python Setup
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
cache: 'pip'

- name: Python Install Dependencies
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Python Setup
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
cache: 'pip'

- name: Python Install Dependencies
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Python Setup
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
cache: 'pip'

- name: Python Install Dependencies
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
- name: Python Setup
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
cache: 'pip'

- name: Python Install Dependencies
Expand Down Expand Up @@ -121,10 +121,10 @@ jobs:
- name: Python Setup
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9

- name: Python Install Dependencies
run: pip install -r docs/requirements.txt

- name: image-check
run: make -C docs/ imagecheck
run: make -C docs/ imagecheck
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ formats:
build:
os: "ubuntu-22.04"
tools:
python: "3.8"
python: "3.9"

python:
install:
Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Sphinx==4.5.0
sphinx-autobuild==2021.3.14
Sphinx==5.0.0
sphinx-autobuild==2024.2.4
make==0.1.6.post2
git+https://github.com/FIRST-Tech-Challenge/ftcdocs-helper@main#subdirectory=sphinx_rtd_dark_mode_v2
git+https://github.com/FIRST-Tech-Challenge/ftcdocs-helper@main#subdirectory=javasphinx
Expand Down
Loading