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 d280737 commit 172ab84Copy full SHA for 172ab84
.github/workflows/test.yml
@@ -26,13 +26,19 @@ jobs:
26
run: |
27
python -m venv venv
28
source venv/bin/activate
29
-
30
- - name: Install
31
- run: |
32
python -m pip install --upgrade pip wheel setuptools
33
python -m pip install -r requirements/test.txt -r doc/requirements.txt
34
python -m pip install codecov
35
python -m pip install ${{ matrix.sphinx-version }}
+ python -m pip list
+
+ - name: Downgrade Jinja2 for sphinx<4
36
+ if: (${{ matrix.sphinx-version }} == 'sphinx==1.8.0') ||
37
+ (${{ matrix.sphinx-version }} == 'sphinx==2.1')
38
+ run: python -m pip install jinja2==3.0.3
39
40
+ - name: Install
41
+ run: |
42
python -m pip install .
43
pip list
44
0 commit comments