Releases: pyblish/pyblish-lite
Releases · pyblish/pyblish-lite
0.8.12
0.8.11
0.8.10
0.8.9
0.8.8b2
0.8.8b1
Beta-release of a fix for a long-standing issue #59 and #113.
This should not - but may - affect the results of publishing, which is why this has been released in "beta" for now. Take it for a spin, keep an eye out and let us know here or in the chat whether there are any issues for you.
To use it, append the --pre
flag to your pip install
command. Without it, the latest stable release will be installed.
pip install pyblish-lite
# pyblish_lite-0.8.7 installed
pip install pyblish-lite --pre --upgrade
# pyblish_lite-0.8.8b1 installed
0.8.7
0.8.6
0.8.5
0.8.4
Added new callbacks.
from pyblish import api
import pyblish_lite
def on_published(context):
print("Context was %s" % context)
def on_validated(context):
print("Context was %s" % context)
api.register_callback("validated", on_on_validated)
api.register_callback("published", on_on_published)
pyblish_lite.show()