File tree Expand file tree Collapse file tree 4 files changed +24
-3
lines changed
Expand file tree Collapse file tree 4 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 110.5.0
2- =====
3- :release date: TBD
2+ ======
43
540.5 is important step toward 1.0. There are some deprecations.
65Please read changes carefully.
@@ -20,9 +19,16 @@ Changes
2019
2120* Pure Python implementation supports packing memoryview object.
2221
22+
23+ 0.4.8
24+ =====
25+ :release date: 2016-07-29
26+
2327Bugs fixed
2428----------
2529
30+ * Calling ext_hook with wrong length. (Only on Windows, maybe. #203)
31+
2632
27330.4.7
2834=====
Original file line number Diff line number Diff line change 2626 rm -rf build
2727 rm msgpack/* .so
2828 rm -rf msgpack/__pycache__
29+
30+ build-manylinux1-wheel :
31+ docker run --rm -ti -v ` pwd` :/project -w /project quay.io/pypa/manylinux1_i686 bash docker/buildwheel.sh
32+ docker run --rm -ti -v ` pwd` :/project -w /project quay.io/pypa/manylinux1_x86_64 bash docker/buildwheel.sh
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e -x
3+
4+ ARCH=` uname -p`
5+ echo " arch=$ARCH "
6+
7+ for V in cp35-cp35m cp34-cp34m cp27-cp27m cp27-cp27mu; do
8+ PYBIN=/opt/python/$V /bin
9+ rm -rf build/ # Avoid lib build by narrow Python is used by wide python
10+ $PYBIN /python setup.py bdist_wheel -p manylinux1_${ARCH}
11+ done
Original file line number Diff line number Diff line change 1- version = (0 , 4 , 7 )
1+ version = (0 , 4 , 8 )
You can’t perform that action at this time.
0 commit comments