Skip to content

Commit

Permalink
Remove wheels after deploying
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jun 5, 2016
1 parent 61a62eb commit 092a0b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion multidict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
__all__ = ('MultiDictProxy', 'CIMultiDictProxy',
'MultiDict', 'CIMultiDict', 'upstr', '__version__')

__version__ = '1.1.0b3'
__version__ = '1.1.0b4'


if bool(os.environ.get('MULTIDICT_NO_EXTENSIONS')):
Expand Down
5 changes: 5 additions & 0 deletions run_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,8 @@ if [ ! -z $TRAVIS_TAG ]; then
ls
python -m twine upload dist/* --username andrew.svetlov --password $PYPI_PASSWD
fi


if [ -z $MULTIDICT_NO_EXTENSIONS ]; then
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 rm -rf /io/dist
fi

0 comments on commit 092a0b4

Please sign in to comment.