forked from panyang/nltk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RELEASE-HOWTO
73 lines (57 loc) · 2.69 KB
/
RELEASE-HOWTO
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Building an NLTK distribution
----------------------------------
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@ BUILD
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
A. PREPARE
1. Create a release branch from the develop branch
git checkout -b release-3.X.Y develop
2. Modify nltk/VERSION with the version number
3. Update the ChangeLog (for nltk, nltk_data)
git log --since=20XX-YY-ZZ
4. Update the data index (make data_index) and commit
5. Continue with testing and bugfixing
- https://nltk.ci.cloudbees.com/job/nltk/
- install the new version locally, since its the installed code that is checked
- cd nltk/test; make (run the tests in nltk.test; or see Jenkins)
- make demotest (run the demonstration code including some graphical demos)
6. Check that installation instructions are up-to-date
7. Update the news page in nltk/web/news.rst
8. Merge with master branch
- git checkout master
- git merge --no-ff release-3.X.Y
- git tag -a 3.X.Y -m "version 3.X.Y"
- git push --tags
B. RELEASE
1. Make dist
2. Put up the release on github
https://github.com/nltk/nltk/releases
3. sudo python setup.py register
4. Log in to http://pypi.python.org/pypi and upload distributions
5. rebuild the website with updated news page
6. post announcement to NLTK the mailing lists:
nltk-dev (for beta releases)
nltk (for final releases)
7. post announcement to external mailing lists, for major N.N releases only
mailing lists for any local courses using NLTK
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@ BOOK BUILD
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
The build requires docutils, pdflatex, python imaging library, epydoc,
cdrtools, ImageMagick
1. Check out a clean copy of the subversion repository (or make clean)
and install locally with sudo python setup.py install; make clean
2. make doc (slow; see doc/ for the results) and commit
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@ INSTALL
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
D. INSTALLATION
1. download and install new version on all machines
2. contact relevant sysads to install new version
3. copy dist directory to memory stick
E. NEW VERSION NUMBER (optional)
1. update the version numbers in the repository so that builds
off the repository don't have the same version as the release,
e.g. after release 0.9.6, update repository version to 0.9.7a (alpha)