Preparation:
-
run unit tests:
tests/wekatests/all_tests.py
-
increment version in
setup.py
-
increment versions/copyright in
doc/source/conf.py
-
update API documentation
- cd python/weka
- sphinx-apidoc -f -o ../../doc/source .
- make sure that all modules are included in
index.rst
(apart frommodules.rst
)
-
update package suggestions by generating list of packages/classes within
weka-HEAD/packages
:find -name "*.java" | grep -v "\/dist\/" | grep "src\/main" | \ sed s/".*internal\/"//g | sed s/".*external\/"//g | \ sed s/"\.java"//g | sed s/"\/src\/main\/java\/"/","/g | \ sed s/"\/"/.""/g > python-weka-wrapper3/python/weka/lib/pkg_suggestions.csv
-
add new changelog section in
CHANGES.rst
-
commit/push all changes
Commands for releasing on pypi.org (requires twine >= 1.8.0):
find -name "*~" -delete
rm dist/*
./venv/bin/python setup.py clean
./venv/bin/python setup.py sdist
./venv/bin/twine upload dist/*
Commands for updating github pages (requires Java 8!):
find -name "*~" -delete
cd doc
make html
cd build/html
cp -R * ../../../../python-weka-wrapper3.gh-pages/
cd ../../../../python-weka-wrapper3.gh-pages/
git pull origin gh-pages
git add -A
git commit -a -m "updated documentation"
git rebase gh-pages
git push origin gh-pages
Steps:
- start new release (version:
vX.Y.Z
) - enter release notes, i.e., significant changes since last release
- upload
python-weka-wrapper3-X.Y.Z.tar.gz
previously generated withsetyp.py
- publish
Steps:
- login
- goto project page https://mloss.org/software/view/660/
- click on
Update project
- update
Version
andDownload URL
- re-use release notes from Github release in
Changes since last revision
- save
- post release on the Google Group: https://groups.google.com/forum/#!forum/python-weka-wrapper