diff --git a/pyproject.toml b/pyproject.toml index 52966213..ba2bfdc1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [tool.poetry] name = "llnl-thicket" -version = "2025.1.0" +version = "2025.2.0" description = "A Python-based toolkit for analyzing ensemble performance data." license = "MIT" diff --git a/thicket/tests/test_from_statsframes.py b/thicket/tests/test_from_statsframes.py index 97b05421..933a0e0d 100644 --- a/thicket/tests/test_from_statsframes.py +++ b/thicket/tests/test_from_statsframes.py @@ -63,6 +63,7 @@ def test_multi_trial( ): tk = th.Thicket.from_caliperreader( rajaperf_cali_alltrials, + node_ordering=True, intersection=intersection, fill_perfdata=fill_perfdata, disable_tqdm=True, diff --git a/thicket/version.py b/thicket/version.py index 194c5511..9318e426 100644 --- a/thicket/version.py +++ b/thicket/version.py @@ -3,5 +3,5 @@ # # SPDX-License-Identifier: MIT -__version_info__ = ("2025", "1", "0") +__version_info__ = ("2025", "2", "0") __version__ = ".".join(__version_info__)