File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,20 @@ jobs:
23
23
python-version : ${{ matrix.python-version }}
24
24
25
25
- name : Setup environment
26
- run : |
27
- python -m venv venv
28
- source venv/bin/activate
29
-
30
- - name : Install
31
26
run : |
32
27
python -m pip install --upgrade pip wheel setuptools
33
28
python -m pip install -r requirements/test.txt -r doc/requirements.txt
34
29
python -m pip install codecov
35
30
python -m pip install ${{ matrix.sphinx-version }}
31
+ python -m pip list
32
+
33
+ - name : Downgrade Jinja2 for sphinx<4
34
+ if : (${{ matrix.sphinx-version }} == 'sphinx==1.8.0') ||
35
+ (${{ matrix.sphinx-version }} == 'sphinx==2.1')
36
+ run : python -m pip install jinja2==3.0.3
37
+
38
+ - name : Install
39
+ run : |
36
40
python -m pip install .
37
41
pip list
38
42
You can’t perform that action at this time.
0 commit comments