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 55 56 57 58
|
# Deploy
Notes on how to deploy guizero (on Windows).
## Prepare
- Update version number in `guizero\__init__.py`
- Update version number in `docs-src\docs\about.md`
- Update version number for Windows MSI installer in `docs-src\docs\index.md`
- Update `changelog.md` in docs
## Python library
Install locally:
```
cd guizero
python setup.py install
```
Build for deployment:
```
cd guizero
python setup.py sdist
python setup.py bdist_wheel
python setup.py bdist_msi --plat-name=amd64
python setup.py bdist_msi --plat-name=win32
```
Upload to pypi:
```
cd guizero
twine upload dist/* --skip-existing
```
## Documents
Build:
```
cd guizero/docs-src
mkdocs build
```
Copy to `docs`:
```
cd guizero
xcopy docs-src\site\* docs /E
```
## Promote and tag release on github
- Push all changes to `master`.
- Create a new release on github named `0.0.0`.
- Upload Windows MSI installers named `guizero-0.0.0.amd64.msi` and `guizero-0.0.0.win32.msi` to the release.
|