Skip to content

Commit d6f58ef

Browse files
authored
SG-38813 Update supported versions (#80)
* Mark 18.5 as the oldest compatible version * Update badges
1 parent 5fb248d commit d6f58ef

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
[![VFX Platform](https://img.shields.io/badge/vfxplatform-2025%20%7C%202024%20%7C%202023%20%7C%202022-blue.svg)](http://www.vfxplatform.com/)
2-
[![Python](https://img.shields.io/badge/python-3.11%20%7C%203.10%20%7C%203.9-blue.svg)](https://www.python.org/)
1+
# Toolkit Engine for Houdini
2+
3+
![Supported Houdini versions: 19.5 - 20.5](https://img.shields.io/badge/Houdini-20.5_|_20.0_|_19.5-blue?logo=houdini&logoColor=f5f5f5 "Support Maya versions")
4+
[![Supported VFX Platform: 2022 - 2025](https://img.shields.io/badge/VFX_Platform-2025_|_2024_|_2023_|_2022-blue)](http://www.vfxplatform.com/ "Supported VFX Platform")
5+
[![Supported Python versions: 3.9 - 3.11](https://img.shields.io/badge/Python-3.11_|_3.10_|_3.9-blue?logo=python&logoColor=f5f5f5)](https://www.python.org/ "Supported Python versions")
6+
37
[![Build Status](https://dev.azure.com/shotgun-ecosystem/Toolkit/_apis/build/status/Engines/tk-houdini?branchName=master)](https://dev.azure.com/shotgun-ecosystem/Toolkit/_build/latest?definitionId=63&branchName=master)
48
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
59
[![Linting](https://img.shields.io/badge/PEP8%20by-Hound%20CI-a873d1.svg)](https://houndci.com)

engine.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ def init_engine(self):
6666

6767
self.logger.debug("%s: Initializing..." % self)
6868

69-
if self._houdini_version[0] < 14:
69+
if self._houdini_version[0:2] < (18, 5):
7070
raise sgtk.TankError(
71-
"Your version of Houdini is not supported. Currently, Toolkit "
72-
"only supports version 14+."
71+
"Flow Production Tracking is not compatible with Houdini "
72+
"versions older than 18.5."
7373
)
7474

7575
# keep track of if a UI exists

startup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class HoudiniLauncher(SoftwareLauncher):
6969
@property
7070
def minimum_supported_version(self):
7171
"""The minimum supported Houdini version."""
72-
return "14.0"
72+
return "18.5"
7373

7474
def prepare_launch(self, exec_path, args, file_to_open=None):
7575
"""

0 commit comments

Comments
 (0)