FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
msgpack-python/Makefile at main · didimelli/msgpack-python · GitHub
didimelli
/
msgpack-python
Public
forked from
msgpack/msgpack-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
msgpack-python
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
44 lines (36 loc) · 1 KB
Breadcrumbs
msgpack-python
/
Makefile
Copy path
File metadata and controls
44 lines (36 loc) · 1 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
.PHONY
: all
all
: cython
python setup.py build_ext -i -f
.PHONY
: black
black
:
black msgpack/ test/ setup.py
.PHONY
: cython
cython
:
cython --cplus msgpack/_cmsgpack.pyx
.PHONY
: test
test
: cython
pip install -e
.
pytest -v
test
MSGPACK_PUREPYTHON=1 pytest -v
test
.PHONY
: serve-doc
serve-doc
: all
cd
docs
&&
make serve
.PHONY
: clean
clean
:
rm -rf build
rm -f msgpack/_cmsgpack.cpp
rm -f msgpack/_cmsgpack.
*
.so
rm -f msgpack/_cmsgpack.
*
.pyd
rm -rf msgpack/__pycache__
rm -rf test/__pycache__
.PHONY
: update-docker
update-docker
:
docker pull quay.io/pypa/manylinux1_i686
docker pull quay.io/pypa/manylinux1_x86_64
.PHONY
: linux-wheel
linux-wheel
:
docker run --rm -v
`
pwd
`
:/project -w /project quay.io/pypa/manylinux1_i686 bash docker/buildwheel.sh
docker run --rm -v
`
pwd
`
:/project -w /project quay.io/pypa/manylinux1_x86_64 bash docker/buildwheel.sh
.PHONY
: linux-arm64-wheel
linux-arm64-wheel
:
docker run --rm -v
`
pwd
`
:/project -w /project quay.io/pypa/manylinux2014_aarch64 bash docker/buildwheel.sh
Back
|
FazBrowse Home
|
New Git URL