1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
build:
rm -rf dist
# No bdist_wheel: problems with versioneer.
python3 setup.py sdist
upload:
pip3 install twine
twine upload --skip-existing dist/*
readme:
tox -e py38 -- test/test_doc.py
test:
pyenv update
pyenv install --skip-existing 3.6.13
pyenv install --skip-existing 3.7.10
pyenv install --skip-existing 3.9.2
pyenv local 3.6.13 3.7.10 3.9.2
pip3 install tox
tox
doc:
tox -e docs
xdg-open .tox/docs/tmp/html/index.html
.PHONY: build upload test readme doc
|