Skip to content

Commit 31b3b07

Browse files
committed
Bump to 1.1.0b6
1 parent e55ceb1 commit 31b3b07

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

multidict/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
__all__ = ('MultiDictProxy', 'CIMultiDictProxy',
1111
'MultiDict', 'CIMultiDict', 'upstr', '__version__')
1212

13-
__version__ = '1.1.0b5'
13+
__version__ = '1.1.0b6'
1414

1515

1616
if bool(os.environ.get('MULTIDICT_NO_EXTENSIONS')):

run_docker.sh

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
if [ -z $MULTIDICT_NO_EXTENSIONS ]; then
22
docker pull quay.io/pypa/manylinux1_x86_64
33
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh
4+
45
docker pull quay.io/pypa/manylinux1_i686
56
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 linux32 /io/build-wheels.sh
67
echo "Dist folder content is:"
@@ -10,7 +11,18 @@ fi
1011
if [ ! -z $TRAVIS_TAG ]; then
1112
echo "Upload dists to PyPI"
1213
ls
13-
python -m twine upload dist/* --username andrew.svetlov --password $PYPI_PASSWD
14+
for f in dist/*.whl
15+
do
16+
if [[ f == *"linux_x86_64"* ]]
17+
then
18+
docker run --rm -v `pwd`:/io auditwheel quay.io/pypa/manylinux1_x86_64 repair $f
19+
fi
20+
if [[ f == *"linux_i686"* ]]
21+
then
22+
docker run --rm -v `pwd`:/io auditwheel quay.io/pypa/manylinux1_i686 linux32 repair $f
23+
fi
24+
python -m twine upload $f --username andrew.svetlov --password $PYPI_PASSWD
25+
done
1426
fi
1527

1628

0 commit comments

Comments
 (0)