mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-21 23:30:58 +00:00
9e0d244bcd
Signed-off-by: Dan Ryan <dan@danryan.co>
16 lines
419 B
YAML
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/*
|