Skip to content

Commit

Permalink
Merge pull request #17 from darkvertex/dev_build_wheels
Browse files Browse the repository at this point in the history
Edit Travis config to build a Python wheel (.whl) along with the .tar.gz file
  • Loading branch information
mottosso authored Sep 8, 2018
2 parents 88b189a + 64cb737 commit 661b086
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ script:
deploy:
provider: pypi
user: mottosso
distributions: "sdist bdist_wheel"
password:
secure: TeaVT5oKTkGTHAdkW0fjRIyxD8mbGDh5e7VwjVY/nAmASuX6J+W1IKsmF2lvgKETlbnhNsGl+Lk2YkT5bxRGY4ZI0Hnm4Dewn1Rfq0HdUbTT19gSq86dBHfjZTuq7C5DILIA0SjNfmIQvDsICdj08rkdye+r1fleCtedZAhgkMU=
on:
Expand Down
2 changes: 1 addition & 1 deletion pyblish_houdini/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

VERSION_MAJOR = 1
VERSION_MINOR = 0
VERSION_PATCH = 0
VERSION_PATCH = 1

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 661b086

Please sign in to comment.