Skip to content

Commit 4fc1d79

Browse files
committed
Build wheels
1 parent 3bd79af commit 4fc1d79

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

Makefile

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
publish:
2-
python setup.py sdist upload
1+
dist: clean
2+
python setup.py sdist bdist_wheel
3+
4+
publish: dist
5+
twine upload -s dist/*
36

47
clean:
58
rm -rf *.egg-info
69
rm -rf dist
710

8-
.PHONY: publish clean
11+
.PHONY: dist publish clean

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

0 commit comments

Comments
 (0)