Staging
v0.5.1
https://github.com/python/cpython
Revision f7a19c28bda7b0ed3a440db80202013a86af6850 authored by Victor Stinner on 30 May 2018, 14:49:07 UTC, committed by GitHub on 30 May 2018, 14:49:07 UTC
Check which readline implementation is used based on the readline
docstring.
1 parent be325e6
Raw File
Tip revision: f7a19c28bda7b0ed3a440db80202013a86af6850 authored by Victor Stinner on 30 May 2018, 14:49:07 UTC
bpo-33692: pythoninfo detect libedit on Python 3.6 (GH-7244)
Tip revision: f7a19c2
docs.yml
# Current docs for the syntax of this file are at:
#  https://github.com/Microsoft/vsts-agent/blob/master/docs/preview/yamlgettingstarted.md

name: $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.rr)

queue:
  name: Hosted Linux Preview

trigger:
  branches:
    include:
    - master
    - 3.7
    - 3.6
  paths:
    include:
    - Doc/*

#variables:

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~=1.6.1 blurb python-docs-theme
  displayName: 'Install build dependencies'

- script: make check suspicious html PYTHON=python
  workingDirectory: '$(build.sourcesDirectory)/Doc'
  displayName: 'Build documentation'

- task: PublishBuildArtifacts@1
  displayName: 'Publish build'
  condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))
  inputs:
    PathToPublish: '$(build.sourcesDirectory)/Doc/build'
    ArtifactName: build
    publishLocation: Container
back to top