Skip to content

Commit

Permalink
Merge pull request #298 from darkvertex/dev_build_wheels
Browse files Browse the repository at this point in the history
Add setup.cfg to tell bdist_wheel that we want a 'universal' wheel.
  • Loading branch information
mottosso authored Sep 20, 2018
2 parents 5d5fc0c + 6f7645d commit 11c44c3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ script:
deploy:
provider: pypi
user: mottosso
distributions: "sdist bdist_wheel"
password:
secure: NKekJIgRr/kaDXsK6Vz4rj3Uuxk6gK1NsrlAkAqXX8bPSS2oLpp8KVN2SjoCizwdO+sZzry6q0WdbeqnqRwiTTdnotlyVqjbmFNfTCeRdqZKAqYDvfSe44eNWCQgf06zl0lErX9NrJuPnJWyXqutvojdm50b99NzkiO60I+Fr6M=
on:
tags: true
distributions: sdist bdist_wheel
repo: pyblish/pyblish-qml
2 changes: 1 addition & 1 deletion pyblish_qml/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

VERSION_MAJOR = 1
VERSION_MINOR = 8
VERSION_PATCH = 2
VERSION_PATCH = 3

version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
version = '%i.%i.%i' % version_info
Expand Down
7 changes: 7 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[metadata]
# This includes the license file in the wheel.
license_file = LICENSE

[bdist_wheel]
# This produces a "universal" (Py2+3) wheel.
universal = 1

0 comments on commit 11c44c3

Please sign in to comment.