Staging
v0.5.1
https://github.com/python/cpython
Revision f9195318a863e237f41ed7665c767028cde1c9a3 authored by Julien Jerphanion on 28 November 2020, 07:11:19 UTC, committed by GitHub on 28 November 2020, 07:11:19 UTC
Cache repeated sum and difference to make code slightly faster and easier to read.
1 parent 44ca05a
Raw File
Tip revision: f9195318a863e237f41ed7665c767028cde1c9a3 authored by Julien Jerphanion on 28 November 2020, 07:11:19 UTC
bpo-42452: Improve colorsys.rgb_to_hls code (GH-23306)
Tip revision: f919531
docs-steps.yml
parameters:
  latex: false
  upload: false

steps:
- checkout: self
  clean: true
  fetchDepth: 5

- task: UsePythonVersion@0
  displayName: 'Use Python 3.6 or later'
  inputs:
    versionSpec: '>=3.6'

- script: python -m pip install sphinx==2.2.0 blurb python-docs-theme
  displayName: 'Install build dependencies'

- ${{ if ne(parameters.latex, 'true') }}:
  - script: make check html PYTHON=python
    workingDirectory: '$(build.sourcesDirectory)/Doc'
    displayName: 'Build documentation'

- ${{ if eq(parameters.latex, 'true') }}:
  - script: sudo apt-get update && sudo apt-get install -qy --force-yes texlive-full
    displayName: 'Install LaTeX'

  - script: make dist PYTHON=python SPHINXBUILD='python -m sphinx' BLURB='python -m blurb'
    workingDirectory: '$(build.sourcesDirectory)/Doc'
    displayName: 'Build documentation'

- ${{ if eq(parameters.upload, 'true') }}:
  - task: PublishBuildArtifacts@1
    displayName: 'Publish docs'
  
    inputs:
      PathToPublish: '$(build.sourcesDirectory)/Doc/build'
      ArtifactName: docs
      publishLocation: Container

  - ${{ if eq(parameters.latex, 'true') }}:
    - task: PublishBuildArtifacts@1
      displayName: 'Publish dist'
      inputs:
        PathToPublish: '$(build.sourcesDirectory)/Doc/dist'
        ArtifactName: docs_dist
        publishLocation: Container
back to top