mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-21 23:30:58 +00:00
15 lines
357 B
YAML
15 lines
357 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 check-manifest
|
|
check-manifest
|