From def59093c7bf14096b84dc56e680541d8da514fc Mon Sep 17 00:00:00 2001 From: Alan Fregtman <941331+darkvertex@users.noreply.github.com> Date: Sun, 2 Sep 2018 20:30:40 -0400 Subject: [PATCH 1/5] Edit Travis config to build a Python wheel (.whl) along with the .tar.gz file. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index a12d30a..69ed12b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,5 @@ deploy: secure: TeaVT5oKTkGTHAdkW0fjRIyxD8mbGDh5e7VwjVY/nAmASuX6J+W1IKsmF2lvgKETlbnhNsGl+Lk2YkT5bxRGY4ZI0Hnm4Dewn1Rfq0HdUbTT19gSq86dBHfjZTuq7C5DILIA0SjNfmIQvDsICdj08rkdye+r1fleCtedZAhgkMU= on: tags: true + distributions: "sdist bdist_wheel" repo: pyblish/pyblish-houdini From d41387e6bd3e9cce74901d6ac0ba071dd11f1bee Mon Sep 17 00:00:00 2001 From: Alan Fregtman <941331+darkvertex@users.noreply.github.com> Date: Mon, 3 Sep 2018 15:01:54 -0400 Subject: [PATCH 2/5] Add setup.cfg to tell bdist_wheel that we want a 'universal' wheel. --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b8a1655 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[bdist_wheel] +universal = 1 + From 429fcf2a1c31eb6b61df4507f687f7825450576e Mon Sep 17 00:00:00 2001 From: Alan Fregtman <941331+darkvertex@users.noreply.github.com> Date: Mon, 3 Sep 2018 23:52:37 -0400 Subject: [PATCH 3/5] Edit .travis.yml to move 'distributions' property directly under 'deploy' block. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 69ed12b..ceada53 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,9 +9,9 @@ script: deploy: provider: pypi user: mottosso + distributions: "sdist bdist_wheel" password: secure: TeaVT5oKTkGTHAdkW0fjRIyxD8mbGDh5e7VwjVY/nAmASuX6J+W1IKsmF2lvgKETlbnhNsGl+Lk2YkT5bxRGY4ZI0Hnm4Dewn1Rfq0HdUbTT19gSq86dBHfjZTuq7C5DILIA0SjNfmIQvDsICdj08rkdye+r1fleCtedZAhgkMU= on: tags: true - distributions: "sdist bdist_wheel" repo: pyblish/pyblish-houdini From 73c665fd0c6c4a7a8a67ce81523c8685bd412cff Mon Sep 17 00:00:00 2001 From: Alan Fregtman <941331+darkvertex@users.noreply.github.com> Date: Fri, 7 Sep 2018 15:54:27 -0400 Subject: [PATCH 4/5] Edit setup.cfg to include LICENSE. --- setup.cfg | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index b8a1655..ac4da66 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +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 - From 64cb737581a68a20c1f500923674f7df63ad0405 Mon Sep 17 00:00:00 2001 From: Alan Fregtman <941331+darkvertex@users.noreply.github.com> Date: Fri, 7 Sep 2018 15:57:28 -0400 Subject: [PATCH 5/5] Version bump --- pyblish_houdini/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyblish_houdini/version.py b/pyblish_houdini/version.py index 76ae29d..094192d 100644 --- a/pyblish_houdini/version.py +++ b/pyblish_houdini/version.py @@ -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