Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add twine check to azure CI + 3.8 matrix #1602

Merged
merged 12 commits into from
Jan 25, 2021
12 changes: 9 additions & 3 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
vmImage: 'ubuntu-18.04'
strategy:
matrix:
Python38:
python.version: '3.8'
Python37:
python.version: '3.7'
Python36:
python.version: '3.6'
anndata_dev:
python.version: '3.7'
python.version: '3.8'
ANNDATA_DEV: yes
RUN_COVERAGE: yes
steps:
Expand Down Expand Up @@ -79,3 +79,9 @@ jobs:
python setup.py check --restructuredtext --strict
rst2html.py --halt=2 README.rst >/dev/null
displayName: 'rst2html'

- script: |
pip install setuptools twine
python setup.py sdist bdist_wheel
Zethson marked this conversation as resolved.
Show resolved Hide resolved
twine check dist/*
displayName: 'Twine check'
Zethson marked this conversation as resolved.
Show resolved Hide resolved