Skip to content

Commit

Permalink
Modify travis instructions again
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Apr 16, 2016
1 parent db69000 commit 7d4902a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ env:
- MULTIDICT_NO_EXTENSIONS=X

before_deploy:
- if [ -z $MULTIDICT_NO_EXTENSIONS ]; then
./run_docker.sh
fi
- run_docker.sh

deploy:
provider: pypi
Expand Down
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.0a2'
__version__ = '1.1.0a3'


if bool(os.environ.get('MULTIDICT_NO_EXTENSIONS')):
Expand Down
10 changes: 6 additions & 4 deletions run_docker.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
docker pull quay.io/pypa/manylinux1_x86_64
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh
docker pull quay.io/pypa/manylinux1_i686
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 linux32 /io/build-wheels.sh
if [ -z $MULTIDICT_NO_EXTENSIONS ]; then
docker pull quay.io/pypa/manylinux1_x86_64
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh
docker pull quay.io/pypa/manylinux1_i686
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 linux32 /io/build-wheels.sh
fi

0 comments on commit 7d4902a

Please sign in to comment.