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 1
1
0.5.0
2
- =====
3
- :release date: TBD
2
+ ======
4
3
5
4
0.5 is important step toward 1.0. There are some deprecations.
6
5
Please read changes carefully.
@@ -20,9 +19,16 @@ Changes
20
19
21
20
* Pure Python implementation supports packing memoryview object.
22
21
22
+
23
+ 0.4.8
24
+ =====
25
+ :release date: 2016-07-29
26
+
23
27
Bugs fixed
24
28
----------
25
29
30
+ * Calling ext_hook with wrong length. (Only on Windows, maybe. #203)
31
+
26
32
27
33
0.4.7
28
34
=====
Original file line number Diff line number Diff line change 26
26
rm -rf build
27
27
rm msgpack/* .so
28
28
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