Files
pipenv/.azure-pipelines/jobs/run-manifest-check.yml
Dan Ryan 9e0d244bcd Update packaging check script
Signed-off-by: Dan Ryan <dan@danryan.co>
2018-11-22 01:41:51 -05:00

16 lines
419 B
YAML

steps:
- task: UsePythonVersion@0
displayName: Use Python $(python.version)
inputs:
versionSpec: '$(python.version)'
architecture: '$(python.architecture)'
- template: ../steps/install-dependencies.yml
- bash: |
export GIT_SSL_CAINFO=$(python -m certifi)
export LANG=C.UTF-8
python -m pip install --upgrade setuptools twine readme_renderer[md]
python setup.py sdist
twine check dist/*