File: deployment.md

package info (click to toggle)
python-guizero 1.6.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,872 kB
  • sloc: python: 7,160; makefile: 34; sh: 17
file content (54 lines) | stat: -rw-r--r-- 676 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Deploy

Notes on how to deploy guizero (on Windows).

## Prepare

- Update version number in `guizero\__init__.py`
- Update version number in `docs\about.md`
- Update `changelog.md` in docs
- Update version number in `pyproject.toml` 

## Python library

Install locally:

```
cd guizero
python setup.py install
```

Build for deployment:

```
cd guizero
python -m build
```

Upload to pypi:

```
cd guizero
twine upload dist/* --skip-existing
```

## Documents

Build:

```
cd guizero/docs
mkdocs build
```

Deploy:

```
cd guizero
mkdocs gh-deploy
```

## Promote and tag release on github

- Push all changes to `master`.
- Create a new release on github named `0.0.0`.