mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge branch 'develop' into enhancement/remove-deprecated-import
This commit is contained in:
commit
641a483e17
3 changed files with 8 additions and 2 deletions
|
|
@ -71,6 +71,12 @@ class ValidateWorkfilePaths(
|
|||
if param.node().type().name() not in cls.node_types:
|
||||
continue
|
||||
|
||||
if param.keyframes():
|
||||
# Calling `.unexpandedString()` below fails if param has
|
||||
# keyframes - so for now we will skip those params. These are
|
||||
# e.g. present in `filecache` nodes.
|
||||
continue
|
||||
|
||||
if any(
|
||||
v for v in cls.prohibited_vars
|
||||
if v in param.unexpandedString()):
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""Package declaring AYON addon 'houdini' version."""
|
||||
__version__ = "0.3.1"
|
||||
__version__ = "0.3.2"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
name = "houdini"
|
||||
title = "Houdini"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
|
||||
client_dir = "ayon_houdini"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue