Skip to content

Commit

Permalink
added pypi upload script bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdev committed Nov 15, 2012
1 parent 3b90dd0 commit cc74995
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion flatpages_x/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.1'
__version__ = '0.1.2'
14 changes: 14 additions & 0 deletions pypi_upload.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/sh
# django-flatpages-x shell script to upload to pypi.

WORKDIR=/tmp/django-flatpages-x-build.$$
mkdir $WORKDIR
pushd $WORKDIR

git clone git://github.com/chrisdev/django-flatpages-x.git
cd django-flatpages-x

/usr/bin/python setup.py sdist upload

popd
rm -rf $WORKDIR

0 comments on commit cc74995

Please sign in to comment.