File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,22 +15,26 @@ jobs:
1515 python-version : [3.4, 3.5, 3.6.8]
1616
1717 steps :
18- - uses : actions/checkout@v2
18+ - uses : actions/checkout@v1
1919 - name : Set up Python ${{ matrix.python-version }}
2020 uses : actions/setup-python@v2
2121 with :
2222 python-version : ${{ matrix.python-version }}
2323 - name : Install dependencies
2424 run : |
25- pip install --upgrade pip
25+ python -m pip install --upgrade pip
26+ python -m pip install sphinx
2627 pip install virtualenv==20.0.1
27- pip install tox tox-gh-actions
28+ - name : Install tox
29+ if : python-version != 3.4
30+ run : pip install tox tox-gh-actions
2831 - name : Test with tox
32+ if : python-version != 3.4
2933 run : |
3034 tox
3135 pip install -e .
3236 - name : Before deploy
3337 run : |
3438 pip install -e .
3539 pip install --upgrade setuptools
36- make docs
40+ make docs
You can’t perform that action at this time.
0 commit comments