Skip to content

Commit 6f0921a

Browse files
committed
Remove unused make_release.sh and add basic Makefile to create sdist+manylinux_wheel (Closes: #21)
1 parent 3b541a7 commit 6f0921a

3 files changed

Lines changed: 12 additions & 36 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ fuse_python.egg-info
44
__pycache__
55
*.pyc
66
*.so
7+
wheelhouse

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
all: source manylinux
2+
3+
source:
4+
python3 setup.py sdist
5+
6+
manylinux:
7+
docker run --rm -it -e PLAT=manylinux2010_x86_64 -v $(PWD):/io:Z -w /io quay.io/pypa/manylinux2010_x86_64 bash -c "yum install -y fuse-devel && /opt/python/cp37-cp37m/bin/python setup.py bdist_wheel && auditwheel repair dist/*.whl"
8+
9+
clean:
10+
python3 setup.py clean --all
11+
rm -fr build dist fuse_python.egg-info wheelhouse

make_release.sh

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)