diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-03-16 10:22:41 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-03-16 10:22:41 +0100 |
commit | 4056ad8f3634f72661e4e856178b6db97af3aa7f (patch) | |
tree | a868aa749e6243bbd7e4b57f5e7fd06623830b99 | |
parent | 6563837ee1e62ed33aa223f4bf6f11addaab140a (diff) |
Build and upload universal wheels to pypi
-rwxr-xr-x | devscripts/release.sh | 2 | ||||
-rw-r--r-- | setup.cfg | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/devscripts/release.sh b/devscripts/release.sh index 72e708c7f..45b080c12 100755 --- a/devscripts/release.sh +++ b/devscripts/release.sh @@ -97,7 +97,7 @@ rm -rf build make pypi-files echo "Uploading to PyPi ..." -python setup.py sdist upload +python setup.py sdist bdist_wheel upload make clean /bin/echo -e "\n### DONE!" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 000000000..e57d130e3 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[wheel] +universal = True |