We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd2a862 commit 7e79fefCopy full SHA for 7e79fef
.github/workflows/sphinx.yml
@@ -5,16 +5,18 @@ on:
5
- cron: '30 13 * * *'
6
jobs:
7
sphinx:
8
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04
9
steps:
10
- uses: actions/checkout@v4
11
- - uses: actions/setup-python@v5
+ - name: Install uv
12
+ uses: astral-sh/setup-uv@v3
13
with:
- python-version: '3.11'
14
+ version: "0.4.29"
15
- name: Run Sphinx
16
run: |
- python -m pip install -r ci/requirements.txt
17
- python -m pip install --config-settings=--build-option=--no-c-backend .
18
-
19
- python -m pip install Sphinx==5.3.0
+ uv venv --python 3.12 venv
+ source venv/bin/activate
+ uv pip install -r ci/requirements.txt
20
+ uv pip install --config-settings=--build-option=--no-c-backend .
21
+ uv pip install Sphinx==5.3.0
22
make -C docs html
0 commit comments