hydraflow 0.13.0__tar.gz → 0.13.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hydraflow-0.13.0 → hydraflow-0.13.1}/PKG-INFO +3 -4
- {hydraflow-0.13.0 → hydraflow-0.13.1}/pyproject.toml +3 -4
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/cli.py +4 -6
- {hydraflow-0.13.0 → hydraflow-0.13.1}/.devcontainer/devcontainer.json +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/.devcontainer/postCreate.sh +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/.devcontainer/starship.toml +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/.gitattributes +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/.github/workflows/ci.yaml +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/.github/workflows/docs.yaml +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/.github/workflows/publish.yaml +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/.gitignore +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/LICENSE +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/README.md +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/apps/quickstart.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/docs/index.md +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/docs/usage/quickstart.md +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/mkdocs.yaml +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/core/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/core/config.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/core/context.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/core/io.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/core/main.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/core/mlflow.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/core/param.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/entities/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/entities/run_collection.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/entities/run_data.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/entities/run_info.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/executor/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/executor/conf.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/executor/io.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/executor/job.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/executor/parser.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/src/hydraflow/py.typed +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/cli/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/cli/app.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/cli/conftest.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/cli/hydraflow.yaml +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/cli/submit.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/cli/test_run.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/cli/test_setup.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/cli/test_show.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/cli/test_version.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/conftest.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/config/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/config/test_config.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/config/test_params.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/context/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/context/chdir.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/context/log_run.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/context/start_run.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/context/test_chdir.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/context/test_log_run.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/context/test_start_run.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/io/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/io/hydra_dir.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/io/test_hydra_dir.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/io/test_iter_dirs.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/io/test_run.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/main/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/main/default.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/main/force_new_run.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/main/match_overrides.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/main/rerun_finished.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/main/skip_finished.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/main/test_default.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/main/test_force_new_run.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/main/test_match_overrides.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/main/test_rerun_finished.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/main/test_skip_finished.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/param/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/param/params.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/param/test_param.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/param/test_params.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/core/test_mlflow.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/entities/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/entities/filter.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/entities/test_collection.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/entities/test_data.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/entities/test_filter.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/entities/test_info.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/entities/test_values.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/entities/values.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/executor/__init__.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/executor/conftest.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/executor/echo.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/executor/read.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/executor/test_args.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/executor/test_conf.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/executor/test_io.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/executor/test_job.py +0 -0
- {hydraflow-0.13.0 → hydraflow-0.13.1}/tests/executor/test_parser.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: hydraflow
|
3
|
-
Version: 0.13.
|
3
|
+
Version: 0.13.1
|
4
4
|
Summary: Hydraflow integrates Hydra and MLflow to manage and track machine learning experiments.
|
5
5
|
Project-URL: Documentation, https://daizutabi.github.io/hydraflow/
|
6
6
|
Project-URL: Source, https://github.com/daizutabi/hydraflow
|
@@ -38,10 +38,9 @@ Classifier: Programming Language :: Python :: 3.13
|
|
38
38
|
Requires-Python: >=3.10
|
39
39
|
Requires-Dist: hydra-core>=1.3
|
40
40
|
Requires-Dist: mlflow>=2.15
|
41
|
-
Requires-Dist: omegaconf
|
41
|
+
Requires-Dist: omegaconf>=2.3
|
42
42
|
Requires-Dist: python-ulid>=3.0.0
|
43
|
-
Requires-Dist:
|
44
|
-
Requires-Dist: typer
|
43
|
+
Requires-Dist: typer>=0.15
|
45
44
|
Description-Content-Type: text/markdown
|
46
45
|
|
47
46
|
# Hydraflow
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "hydraflow"
|
7
|
-
version = "0.13.
|
7
|
+
version = "0.13.1"
|
8
8
|
description = "Hydraflow integrates Hydra and MLflow to manage and track machine learning experiments."
|
9
9
|
readme = "README.md"
|
10
10
|
license = { file = "LICENSE" }
|
@@ -22,10 +22,9 @@ requires-python = ">=3.10"
|
|
22
22
|
dependencies = [
|
23
23
|
"hydra-core>=1.3",
|
24
24
|
"mlflow>=2.15",
|
25
|
-
"omegaconf",
|
25
|
+
"omegaconf>=2.3",
|
26
26
|
"python-ulid>=3.0.0",
|
27
|
-
"
|
28
|
-
"typer",
|
27
|
+
"typer>=0.15",
|
29
28
|
]
|
30
29
|
|
31
30
|
[project.urls]
|
@@ -6,11 +6,9 @@ import shlex
|
|
6
6
|
from typing import Annotated
|
7
7
|
|
8
8
|
import typer
|
9
|
-
from
|
10
|
-
from typer import Argument, Option
|
9
|
+
from typer import Argument, Exit, Option
|
11
10
|
|
12
11
|
app = typer.Typer(add_completion=False)
|
13
|
-
console = Console()
|
14
12
|
|
15
13
|
|
16
14
|
@app.command(context_settings={"ignore_unknown_options": True})
|
@@ -41,7 +39,7 @@ def run(
|
|
41
39
|
it = iter_calls(args, iter_batches(job), dry_run=dry_run)
|
42
40
|
else:
|
43
41
|
typer.echo(f"No command found in job: {job.name}.")
|
44
|
-
raise
|
42
|
+
raise Exit(1)
|
45
43
|
|
46
44
|
if not dry_run:
|
47
45
|
import mlflow
|
@@ -79,7 +77,7 @@ def submit(
|
|
79
77
|
|
80
78
|
if not job.run:
|
81
79
|
typer.echo(f"No run found in job: {job.name}.")
|
82
|
-
raise
|
80
|
+
raise Exit(1)
|
83
81
|
|
84
82
|
if not dry_run:
|
85
83
|
import mlflow
|
@@ -124,4 +122,4 @@ def callback(
|
|
124
122
|
import importlib.metadata
|
125
123
|
|
126
124
|
typer.echo(f"hydraflow {importlib.metadata.version('hydraflow')}")
|
127
|
-
raise
|
125
|
+
raise Exit
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|