File tree Expand file tree Collapse file tree 1 file changed +11
-16
lines changed Expand file tree Collapse file tree 1 file changed +11
-16
lines changed Original file line number Diff line number Diff line change 1
- .PHONY : test all python3
2
-
1
+ .PHONY : all
3
2
all : cython
4
3
python setup.py build_ext -i -f
5
4
6
- doc-serve : all
7
- cd docs && make serve
8
-
9
- doc :
10
- cd docs && make zip
11
-
12
- upload-doc :
13
- python setup.py upload_docs --upload-dir docs/_build/html
14
-
5
+ .PHONY : cython
15
6
cython :
16
7
cython --cplus msgpack/* .pyx
17
8
18
- python3 : cython
19
- python3 setup.py build_ext -i -f
20
-
9
+ .PHONY : test
21
10
test :
22
- py.test test
11
+ py.test -v test
12
+
13
+ .PHONY : serve-doc
14
+ serve-doc : all
15
+ cd docs && make serve
23
16
24
17
.PHONY : clean
25
18
clean :
26
19
rm -rf build
27
20
rm msgpack/* .so
28
21
rm -rf msgpack/__pycache__
22
+ rm -rf test/__pycache__
29
23
30
- build-manylinux1-wheel :
24
+ .PHONY : linux-wheel
25
+ linux-wheel :
31
26
docker run --rm -ti -v ` pwd` :/project -w /project quay.io/pypa/manylinux1_i686 bash docker/buildwheel.sh
32
27
docker run --rm -ti -v ` pwd` :/project -w /project quay.io/pypa/manylinux1_x86_64 bash docker/buildwheel.sh
You can’t perform that action at this time.
0 commit comments