Skip to content

Commit

Permalink
SG-28194: Updated latest Nuke supported version to v14.0 (shotgunsoft…
Browse files Browse the repository at this point in the history
…ware#96)

* Updated latest Nuke supported version to v14.0

* Updated latest Nuke supported version to v14.0
  • Loading branch information
vazquea authored Mar 13, 2023
1 parent 4af2433 commit f92b6b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ def pre_app_init(self):
self.logger.error(msg)
return

# Versions > 13.1 have not yet been tested so show a message to that effect.
if nuke_version[0] > 13 or (nuke_version[0] == 13 and nuke_version[1] > 1):
# Versions > 14.0 have not yet been tested so show a message to that effect.
if nuke_version[0] > 14 or (nuke_version[0] == 14 and nuke_version[1] > 0):
# This is an untested version of Nuke.
msg = (
"The SG Pipeline Toolkit has not yet been fully tested with Nuke %d.%dv%d. "
Expand Down
2 changes: 1 addition & 1 deletion info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ configuration:
type: int
description: "Specify the minimum Application major version that will prompt a warning if
it isn't yet fully supported and tested with Toolkit. To disable the warning
dialog for the version you are testing, it is recomended that you set this
dialog for the version you are testing, it is recommended that you set this
value to the current major version + 1."
default_value: 10

Expand Down

0 comments on commit f92b6b7

Please sign in to comment.