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

cd jsonpickle
VERSION=`awk '/__version__/ {print $3}' jsonpickle/__init__.py | sed "s/'//g"`
nosetests
python setup.py sdist register upload
# upload to github
git tag $VERSION HEAD
git push origin master
git push origin --tags
git push upstream master
git push upstream --tags
cd docs
rm -rf build
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 master
git push origin --tags


Clone this wiki locally