Skip to content

Commit 03a1362

Browse files
committed
Bump to 1.1.0b7
1 parent 31b3b07 commit 03a1362

4 files changed

Lines changed: 23 additions & 25 deletions

File tree

CHANGES.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
1.1.0 (2016-06-04)
1+
1.1.0 (2016-07-06)
22
------------------
33

44
* Don't double-iterate during MultiDict initialization #3
55

66
* Fix CIMultiDict.pop: it is case insensitive now #1
77

8+
* Provide manylinux wheels as well as Windows ones
9+
810
1.0.3 (2016-03-24)
911
------------------
1012

build-wheels.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ for PYTHON in ${PYTHON_VERSIONS}; do
88
done
99

1010
# Bundle external shared libraries into the wheels
11-
# for whl in wheelhouse/*.whl; do
12-
# auditwheel repair $whl -w /io/dist/
13-
# done
11+
for whl in wheelhouse/*.whl; do
12+
if [[ $whl == *"linux_"* ]]; then
13+
auditwheel repair $whl -w /io/dist/
14+
fi
15+
done
1416

1517
# Install packages and test
1618
for PYTHON in ${PYTHON_VERSIONS}; do

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.0b6'
13+
__version__ = '1.1.0b7'
1414

1515

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

run_docker.sh

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,25 @@
1-
if [ -z $MULTIDICT_NO_EXTENSIONS ]; then
1+
if [ ! -z $TRAVIS_TAG ]; then
2+
echo "x86_64"
23
docker pull quay.io/pypa/manylinux1_x86_64
34
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh
5+
echo "Dist folder content is:"
6+
for f in dist/*.whl
7+
do
8+
echo "Upload $f"
9+
python -m twine upload $f --username andrew.svetlov --password $PYPI_PASSWD
10+
done
11+
echo "Cleanup"
12+
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 rm -rf /io/dist
413

14+
echo "i686"
515
docker pull quay.io/pypa/manylinux1_i686
616
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 linux32 /io/build-wheels.sh
717
echo "Dist folder content is:"
8-
ls dist
9-
fi
10-
11-
if [ ! -z $TRAVIS_TAG ]; then
12-
echo "Upload dists to PyPI"
13-
ls
1418
for f in dist/*.whl
1519
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
20+
echo "Upload $f"
2421
python -m twine upload $f --username andrew.svetlov --password $PYPI_PASSWD
2522
done
26-
fi
27-
28-
29-
if [ -z $MULTIDICT_NO_EXTENSIONS ]; then
30-
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 rm -rf /io/dist
23+
echo "Cleanup"
24+
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 rm -rf /io/dist
3125
fi

0 commit comments

Comments
 (0)