Skip to content

Commit ea306f2

Browse files
committed
Bump to 1.1.0b8
1 parent 03a1362 commit ea306f2

3 files changed

Lines changed: 8 additions & 10 deletions

File tree

build-wheels.sh

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
#!/bin/bash
22
PYTHON_VERSIONS="cp34-cp34m cp35-cp35m"
33

4-
# Compile wheels
4+
echo "Compile wheels"
55
for PYTHON in ${PYTHON_VERSIONS}; do
66
/opt/python/${PYTHON}/bin/pip install -r /io/requirements-wheel.txt
77
/opt/python/${PYTHON}/bin/pip wheel /io/ -w /io/dist/
88
done
99

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

17-
# Install packages and test
15+
echo "Install packages and test"
1816
for PYTHON in ${PYTHON_VERSIONS}; do
1917
/opt/python/${PYTHON}/bin/pip install multidict --no-index -f file:///io/dist
2018
rm -rf /io/tests/__pycache__

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

1515

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

run_docker.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ if [ ! -z $TRAVIS_TAG ]; then
33
docker pull quay.io/pypa/manylinux1_x86_64
44
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh
55
echo "Dist folder content is:"
6-
for f in dist/*.whl
6+
for f in dist/*manylinux1_x86_64.whl
77
do
88
echo "Upload $f"
99
python -m twine upload $f --username andrew.svetlov --password $PYPI_PASSWD
@@ -15,7 +15,7 @@ if [ ! -z $TRAVIS_TAG ]; then
1515
docker pull quay.io/pypa/manylinux1_i686
1616
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 linux32 /io/build-wheels.sh
1717
echo "Dist folder content is:"
18-
for f in dist/*.whl
18+
for f in dist/manylinux1_i686.whl
1919
do
2020
echo "Upload $f"
2121
python -m twine upload $f --username andrew.svetlov --password $PYPI_PASSWD

0 commit comments

Comments
 (0)