Rename master to main, use 3.10 final, add workflow_dispatch

This commit is contained in:
Hugo van Kemenade 2021-10-19 13:08:53 +03:00
parent 3db88e98ce
commit 9072b98a18
8 changed files with 42 additions and 36 deletions

View file

@ -1,21 +1,21 @@
# Release Checklist
* [ ] Get master to the appropriate code release state.
- [ ] Get `main` to the appropriate code release state.
[GitHub Actions](https://github.com/pylast/pylast/actions) should be running cleanly for
all merges to master.
all merges to `main`.
[![Test](https://github.com/pylast/pylast/workflows/Test/badge.svg)](https://github.com/pylast/pylast/actions)
* [ ] Edit release draft, adjust text if needed:
- [ ] Edit release draft, adjust text if needed:
https://github.com/pylast/pylast/releases
* [ ] Check next tag is correct, amend if needed
- [ ] Check next tag is correct, amend if needed
* [ ] Publish release
- [ ] Publish release
* [ ] Check the tagged [GitHub Actions build](https://github.com/pylast/pylast/actions?query=workflow%3ADeploy)
- [ ] Check the tagged [GitHub Actions build](https://github.com/pylast/pylast/actions?query=workflow%3ADeploy)
has deployed to [PyPI](https://pypi.org/project/pylast/#history)
* [ ] Check installation:
- [ ] Check installation:
```bash
pip3 uninstall -y pylast && pip3 install -U pylast && python3 -c "import pylast; print(pylast.__version__)"