diff options
author | Victor Stinner <vstinner@python.org> | 2021-04-09 10:36:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 10:36:47 (GMT) |
commit | f7be26a8f2ed588df90959ae7c0fdcafe2091f76 (patch) | |
tree | b789b164b24e39197ab437a0385ef95a11dac40f /.azure-pipelines | |
parent | d00a449d6d421391557393cce695795b4b66c212 (diff) | |
download | cpython-f7be26a8f2ed588df90959ae7c0fdcafe2091f76.zip cpython-f7be26a8f2ed588df90959ae7c0fdcafe2091f76.tar.gz cpython-f7be26a8f2ed588df90959ae7c0fdcafe2091f76.tar.bz2 |
bpo-43774: Doc job of Azure Pipelines uses Doc/requirements.txt (GH-25296)
Don't hardcode the Sphinx version but use Doc/requirements.txt.
Diffstat (limited to '.azure-pipelines')
-rw-r--r-- | .azure-pipelines/docs-steps.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.azure-pipelines/docs-steps.yml b/.azure-pipelines/docs-steps.yml index 33d379b..647daff 100644 --- a/.azure-pipelines/docs-steps.yml +++ b/.azure-pipelines/docs-steps.yml @@ -12,7 +12,8 @@ steps: inputs: versionSpec: '>=3.6' -- script: python -m pip install sphinx==2.2.0 blurb python-docs-theme +- script: python -m pip install -r requirements.txt + workingDirectory: '$(build.sourcesDirectory)/Doc' displayName: 'Install build dependencies' - ${{ if ne(parameters.latex, 'true') }}: |