Skip to content
This repository was archived by the owner on Oct 13, 2025. It is now read-only.

Commit c82a216

Browse files
committed
Merge remote-tracking branch 'origin/topic/bbannier/fix-docs-ci-again'
* origin/topic/bbannier/fix-docs-ci-again: Fix installation of Python packages in generate docs CI job again
2 parents a0bb802 + bd30042 commit c82a216

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/generate-docs.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,22 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
os: [ubuntu-latest, macos-latest]
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
12+
os:
13+
- 'ubuntu-22.04'
14+
- 'macos-latest'
15+
python-version:
16+
- '3.8'
17+
- '3.9'
18+
- '3.10'
19+
- '3.11'
20+
- '3.12'
1421
runs-on: ${{ matrix.os }}
1522
steps:
1623
- uses: actions/checkout@v4
1724
- uses: actions/setup-python@v5
1825
with:
1926
python-version: ${{ matrix.python-version }}
2027
- name: Fetch Dependencies
21-
run: sudo pip3 install --break-system-packages -r requirements.txt
28+
run: pip3 install -r requirements.txt
2229
- name: Generate Docs
2330
run: make SPHINXOPTS="-W --keep-going"

0 commit comments

Comments
 (0)