From b6be9cee2d5dd42c2baf26f9ebbc21f89637fb03 Mon Sep 17 00:00:00 2001 From: JJJHolscher Date: Thu, 15 Feb 2024 09:57:59 +0100 Subject: [PATCH] different run directory --- pyproject.toml | 2 +- src/root.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9d57667..6666af3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "jo3util" -version = "0.0.13" +version = "0.0.15" description = "" dependencies = [] dynamic = ["readme"] diff --git a/src/root.py b/src/root.py index 04ffd40..dbaf13c 100644 --- a/src/root.py +++ b/src/root.py @@ -81,7 +81,7 @@ def root_file(): raise NotImplementedError -def run_dir(obj, root=Path(os.path.abspath("./run"))): +def run_dir(obj, root=Path(os.path.abspath("./out"))): run_id: str = json.dumps( obj, default=lambda x: vars(x) if hasattr(x, "__dict__") else str(x)