File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,12 @@ steps:
12
12
inputs :
13
13
versionSpec : ' >=3.6'
14
14
15
- - script : python -m pip install sphinx==2.2.0 blurb python-docs-theme
15
+ - script : python -m pip install -r requirements.txt
16
+ workingDirectory : ' $(build.sourcesDirectory)/Doc'
16
17
displayName : ' Install build dependencies'
17
18
18
19
- ${{ if ne(parameters.latex, 'true') }} :
19
- - script : make check suspicious html PYTHON=python
20
+ - script : make check html PYTHON=python
20
21
workingDirectory : ' $(build.sourcesDirectory)/Doc'
21
22
displayName : ' Build documentation'
22
23
31
32
- ${{ if eq(parameters.upload, 'true') }} :
32
33
- task : PublishBuildArtifacts@1
33
34
displayName : ' Publish docs'
34
-
35
+
35
36
inputs :
36
37
PathToPublish : ' $(build.sourcesDirectory)/Doc/build'
37
38
ArtifactName : docs
Original file line number Diff line number Diff line change 4
4
# won't suddenly cause build failures. Updating the version is fine as long
5
5
# as no warnings are raised by doing so.
6
6
sphinx == 2.4.4
7
+ # Docutils version is pinned to a version compatible with Sphinx
8
+ # version 2.4.4. It can be removed after bumping Sphinx version to at
9
+ # least 3.5.4.
10
+ docutils == 0.17.1
7
11
8
12
blurb
9
13
You can’t perform that action at this time.
0 commit comments