Skip to content

Commit 8dd37b2

Browse files
committed
Added wheel distribution type to the build
Also set wheel universal setting to 0 so as to prevent py2 compatability which the current version is not.
1 parent 6b891f1 commit 8dd37b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
formats=gztar,zip
33

44
[wheel]
5-
universal=1
5+
universal=0
66

77
[bdist_wheel]
8-
universal=1
8+
universal=0
99

1010
[flake8]
1111
ignore = E501, C0301

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def black(ctx):
8585
@task(pre=[generatejs])
8686
def build(ctx):
8787
"""Generates dist tar ball"""
88-
ctx.run("python setup.py sdist")
88+
ctx.run("python setup.py sdist bdist_wheel")
8989

9090

9191
@task

0 commit comments

Comments
 (0)