Skip to content

Commit 035c2fc

Browse files
Skip installing documentation requirements for Python 3.9 in GitHub Actions
1 parent c05dfb8 commit 035c2fc

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/python.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
python -m pip install --upgrade pip
3232
pip install setuptools build cython wheel
3333
pip install -r tests/requirements.txt
34-
pip install -r doc/requirements.txt
34+
if [ "${{ matrix.python-version }}" != "3.9" ]; then
35+
pip install -r doc/requirements.txt
36+
fi
3537
- name: Build source distribution
3638
run:
3739
python -m build

0 commit comments

Comments
 (0)