Skip to content
johnpaulett edited this page Sep 13, 2010 · 3 revisions

#git submodule init
#git submodule update

VERSION=0.3.0

cd jsonpickle
nosetests
python setup.py sdist register upload
# upload to github
git tag $VERSION HEAD
git push origin --tags
git push upstream --tags
cd docs
make html
cp -r build/html/* ../../jsonpickle.github.com/
cd ../../jsonpickle.github.com/
git commit -a -m "Docs for $VERSION release"
git tag $VERSION HEAD
git push origin --tags

Clone this wiki locally