Merge branch 'develop' into enhancement/remove-deprecated-import

This commit is contained in:
Jakub Trllo 2024-06-18 10:30:28 +02:00 committed by GitHub
commit 641a483e17
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View file

@ -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()):

View file

@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
"""Package declaring AYON addon 'houdini' version."""
__version__ = "0.3.1"
__version__ = "0.3.2"

View file

@ -1,6 +1,6 @@
name = "houdini"
title = "Houdini"
version = "0.3.1"
version = "0.3.2"
client_dir = "ayon_houdini"