File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,10 +19,14 @@ jobs:
1919 id : cache
2020 with :
2121 path : ${{ env.pythonLocation }}
22- key : ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-docs
22+ key : ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-publish
2323
24- - run : pip install mkdocs-material
25- - run : pip install mkdocstrings
24+ - name : Install Flit
25+ if : steps.cache.outputs.cache-hit != 'true'
26+ run : pip install flit
27+ - name : Install Dependencies
28+ if : steps.cache.outputs.cache-hit != 'true'
29+ run : flit install --symlink
2630
2731 - name : Build Docs
2832 run : |
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ test = [
5252]
5353docs = [
5454 " mkdocs-material>=8.3.8" ,
55- " mkdocstrings>=0.19.0" ,
55+ " mkdocstrings[python] >=0.19.0" ,
5656]
5757# pytest
5858[tool .pytest .ini_options ]
You can’t perform that action at this time.
0 commit comments