diff --git a/dvc/repo/experiments/queue/utils.py b/dvc/repo/experiments/queue/utils.py index 3f09108e91..a2b2d2b6e0 100644 --- a/dvc/repo/experiments/queue/utils.py +++ b/dvc/repo/experiments/queue/utils.py @@ -59,7 +59,7 @@ def fetch_running_exp_from_temp_dir( info = ExecutorInfo.from_dict(load_json(infofile)) except OSError: return result - if info.status < TaskStatus.FAILED: + if info.status <= TaskStatus.RUNNING: result[rev] = info.asdict() if info.git_url and fetch_refs and info.status > TaskStatus.PREPARING: diff --git a/pyproject.toml b/pyproject.toml index c6dfc39395..63bfb7c3a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ dependencies = [ "rich>=10.13.0", "pyparsing>=2.4.7", "typing-extensions>=3.7.4", - "scmrepo==0.1.3", + "scmrepo==0.1.4", "dvc-render==0.0.14", "dvc-task==0.1.6", "dvclive>=1.0",