Create a dist before upload

This commit is contained in:
hugovk 2017-02-13 20:42:46 +02:00
parent b342bcc8c2
commit 76c9310341

View file

@ -12,15 +12,16 @@ git commit -m "Release 1.8.0"
```bash ```bash
git tag -a 1.8.0 -m "Release 1.8.0" git tag -a 1.8.0 -m "Release 1.8.0"
``` ```
* [ ] Release on PyPI: * [ ] Create a distribution and release on PyPI:
```bash ```bash
python setup.py sdist --format=gztar
twine upload dist/pylast-1.8.0.tar.gz twine upload dist/pylast-1.8.0.tar.gz
``` ```
* [ ] Check installation: `pip install -U pylast` * [ ] Check installation: `pip install -U pylast`
* [ ] Push: `git push` * [ ] Push: `git push`
* [ ] Push tags: `git push --tags` * [ ] Push tags: `git push --tags`
* [ ] Create new GitHub release: https://github.com/pylast/pylast/releases/new * [ ] Create new GitHub release: https://github.com/pylast/pylast/releases/new
* Tag: Pick existing tag "1.8.0" * Tag: Pick existing tag "1.8.0"
* Title: "Release 1.8.0" * Title: "Release 1.8.0"
* [ ] Update develop branch from master: * [ ] Update develop branch from master:
```bash ```bash