Skip to content

Commit c22f132

Browse files
committed
sdk/docs: Bump versions for sphinx dependencies
Currently, the sphinx dependencies in `docs/add_requirements.txt` are outdated, causing our CI pipeline to fail. This bumps the versions for the additional requirements for the compilation of the documentation to their newest working state. Since that version needs `Python <= 3.11`, we also need to bump the version of Python used in the CI. Fixes #385
1 parent 5540c3d commit c22f132

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,10 @@ jobs:
154154
working-directory: ./sdk
155155
steps:
156156
- uses: actions/checkout@v4
157-
- name: Set up Python ${{ env.X_PYTHON_MIN_VERSION }}
157+
- name: Set up Python ${{ env.X_PYTHON_MAX_VERSION }}
158158
uses: actions/setup-python@v5
159159
with:
160-
python-version: ${{ env.X_PYTHON_MIN_VERSION }}
160+
python-version: ${{ env.X_PYTHON_MAX_VERSION }}
161161
- name: Install Python dependencies
162162
run: |
163163
python -m pip install --upgrade pip

sdk/docs/add-requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Additional requirements for building the docs
2-
sphinx~=7.2
3-
sphinx-rtd-theme~=2.0
4-
sphinx-argparse~=0.4.0
2+
sphinx~=8.2
3+
sphinx-rtd-theme~=3.0
4+
sphinx-argparse~=0.5.0

0 commit comments

Comments
 (0)