From 9703bad3a35acd6a1196280a9279e7a0fce09e90 Mon Sep 17 00:00:00 2001 From: James Douglass Date: Wed, 21 May 2025 07:02:46 -0700 Subject: [PATCH 1/2] Noting the release date and version. RE:#107 --- HISTORY.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 1fa04b2..54b09c4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,8 +4,12 @@ TaskGraph Release History ========================= -Unreleased Changes ------------------- +.. + Unreleased Changes + ------------------ + +0.11.2 (2025-05-21) +------------------- * Using ``importlib.metadata`` or ``importlib_metadata``, depending on the python version, to read the version from package metadata. This is in response to ``pkg_resources`` being deprecated. From 408b5a57762b11cae20f8987cabf75f379012486 Mon Sep 17 00:00:00 2001 From: James Douglass Date: Wed, 21 May 2025 07:08:26 -0700 Subject: [PATCH 2/2] Defining a global to avoid flake8 warning. RE:#107 --- tests/test_task.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_task.py b/tests/test_task.py index 8a8df94..397946c 100644 --- a/tests/test_task.py +++ b/tests/test_task.py @@ -873,6 +873,7 @@ def _append_val(path, *val): def test_unix_path_repeated_function(self): """TaskGraph: ensure no reruns if path is unix style.""" global _append_val + _append_val = _append_val # flake8 complains if not defined task_graph = taskgraph.TaskGraph(self.workspace_dir, -1) target_dir = self.workspace_dir + '/foo/bar/rad/'