File: RELEASING.md

package info (click to toggle)
python-termcolor 2.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: python: 461; makefile: 10; sh: 4
file content (23 lines) | stat: -rw-r--r-- 891 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Release Checklist

- [ ] Get `main` to the appropriate code release state.
      [GitHub Actions](https://github.com/termcolor/termcolor/actions) should be running
      cleanly for all merges to `main`.
      [![GitHub Actions status](https://github.com/termcolor/termcolor/workflows/Test/badge.svg)](https://github.com/termcolor/termcolor/actions)

- [ ] Edit release draft, adjust text if needed:
      https://github.com/termcolor/termcolor/releases

- [ ] Check next tag is correct, amend if needed

- [ ] Publish release

- [ ] Check the tagged
      [GitHub Actions build](https://github.com/termcolor/termcolor/actions/workflows/deploy.yml)
      has deployed to [PyPI](https://pypi.org/project/termcolor/#history)

- [ ] Check installation:

```bash
pip3 uninstall -y termcolor && pip3 install -U termcolor && python -c "from termcolor import cprint; cprint('done', 'green')"
```