Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions tests/test_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/'
Expand Down
Loading