From 75838c281a4c005381635981dac18938e9cb0f3b Mon Sep 17 00:00:00 2001 From: Fabian Bergermann <59446541+fabianbergermann@users.noreply.github.com> Date: Wed, 9 Apr 2025 13:42:17 +0200 Subject: [PATCH 1/2] docs(fix): update the section on DAGs following the replacement of `PyInvoke` by `just` --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 36db868..10e59f3 100644 --- a/README.md +++ b/README.md @@ -913,7 +913,8 @@ This package provides a simple deterministic strategy implemented in `src/[packa A DAG can express the dependencies between steps while keeping the individual step independent. -This package provides a simple DAG example in `tasks/dags.py`. This approach is based on [PyInvoke](https://www.pyinvoke.org/). +This package provides a simple DAG example in `tasks/project.just`. This approach is based on [Just](https://just.systems/man/en/introduction.html) and explained +in the section on Automation above. In production, we recommend to use a scalable system such as [Airflow](https://airflow.apache.org/), [Dagster](https://dagster.io/), [Prefect](https://www.prefect.io/), [Metaflow](https://metaflow.org/), or [ZenML](https://zenml.io/). From 32db2ee312cc42075558feba4cd38840b8ca7eb4 Mon Sep 17 00:00:00 2001 From: Fabian Bergermann <59446541+fabianbergermann@users.noreply.github.com> Date: Wed, 9 Apr 2025 14:46:20 +0200 Subject: [PATCH 2/2] Update README.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 10e59f3..bcb7722 100644 --- a/README.md +++ b/README.md @@ -913,8 +913,7 @@ This package provides a simple deterministic strategy implemented in `src/[packa A DAG can express the dependencies between steps while keeping the individual step independent. -This package provides a simple DAG example in `tasks/project.just`. This approach is based on [Just](https://just.systems/man/en/introduction.html) and explained -in the section on Automation above. +This package provides a DAG example in `tasks/project.just`. The approach is based on [Just](https://just.systems/man/en/introduction.html) and is explained in the section on Automation above. In production, we recommend to use a scalable system such as [Airflow](https://airflow.apache.org/), [Dagster](https://dagster.io/), [Prefect](https://www.prefect.io/), [Metaflow](https://metaflow.org/), or [ZenML](https://zenml.io/).