Merge branch 'develop' into enhancement/maya_template

This commit is contained in:
Toke Stuart Jepsen 2023-05-12 10:19:57 +01:00
commit a129cec522
337 changed files with 11161 additions and 2351 deletions

View file

@ -1,5 +1,6 @@
from .constants import (
AVALON_CONTAINER_ID,
AYON_CONTAINER_ID,
HOST_WORKFILE_EXTENSIONS,
)
@ -99,6 +100,7 @@ uninstall = uninstall_host
__all__ = (
"AVALON_CONTAINER_ID",
"AYON_CONTAINER_ID",
"HOST_WORKFILE_EXTENSIONS",
# --- MongoDB ---

View file

@ -1,5 +1,5 @@
# Metadata ID of loaded container into scene
AVALON_CONTAINER_ID = "pyblish.avalon.container"
AVALON_CONTAINER_ID = AYON_CONTAINER_ID = "pyblish.avalon.container"
# TODO get extensions from host implementations
HOST_WORKFILE_EXTENSIONS = {

View file

@ -58,7 +58,7 @@ class RenderInstance(object):
# With default values
# metadata
renderer = attr.ib(default="") # renderer - can be used in Deadline
review = attr.ib(default=False) # generate review from instance (bool)
review = attr.ib(default=None) # False - explicitly skip review
priority = attr.ib(default=50) # job priority on farm
family = attr.ib(default="renderlayer")

View file

@ -7,6 +7,7 @@ import tempfile
import xml.etree.ElementTree
import six
import pyblish.util
import pyblish.plugin
import pyblish.api

View file

@ -45,7 +45,7 @@ class PublishValidationError(Exception):
def __init__(self, message, title=None, description=None, detail=None):
self.message = message
self.title = title or "< Missing title >"
self.title = title
self.description = description or message
self.detail = detail
super(PublishValidationError, self).__init__(message)