-
Notifications
You must be signed in to change notification settings - Fork 24
/
TODO.txt
59 lines (40 loc) · 1.25 KB
/
TODO.txt
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
59
TODO:
- remove type str8
- remove type unicode
Release Process:
----------------
- sync git repo to have the latest version
- make sure debug option is switched off by default
see rpd/globals.py g_fDebug default value
- edit the version number in winpdb.py
VERSION
WINPDB_VERSION
- run the version to make sure everything is going fine
- update the README.rst with the version description
- run:
python setup.py sdist bdist_wheel
This creates the wheel in directory dist/
- verify the description rendering with:
twine check dist/*
- Upload the project to test.pypi.org:
twine upload --repository testpypi dist/*
- Check the rendering on test.pypi.org: https://test.pypi.org/project/winpdb-reborn/
- Upload the final version to pypi:
twine upload dist/*
- tag and push to github
- upgrade the dependency for winpdb-legacy:
- goto winpdb-legacy
- Edit the lines:
install_requires=[
'wxpython>=4',
'winpdb-reborn>=2.0.0.0 ',
],
- list the exact version of winpdb-reborn just released
- upgrade the 4th digit of the winpdb version:
WINPDB_VERSION = '1.4.9' -> WINPDB_VERSION = '1.4.9.1'
- commit
- package it:
python setup.py sdist bdist_wheel
- Upload the final version to pypi:
twine upload dist/*
- git push