From e13a3dc8d0338f412c57cc35df4f2d80f61392b0 Mon Sep 17 00:00:00 2001 From: Carwyn Pelley Date: Thu, 6 Jun 2024 23:29:02 +0100 Subject: [PATCH] DEBUG docs autobuild (#28) --- .github/workflows/docs.yml | 2 +- pyproject.toml | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 784678b..5369b25 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -18,7 +18,7 @@ jobs: cache: 'pip' - name: Install dependencies - run: pip install .[tests] + run: pip install .[docs] - name: Build documentation run: ./docs/gen_docs dagrunner ./docs diff --git a/pyproject.toml b/pyproject.toml index 07f1a62..fa2dcfd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dagrunner" -version = "0.0.1" +version = "0.0.1dev" description = "Directed acyclic graph (DAG) runner and tools" authors = [ {name = "Carwyn Pelley", email = "carwyn.pelley@metoffice.gov.uk"}, @@ -24,6 +24,9 @@ dependencies = [ tests = [ "pytest" ] +docs = [ + "importlib-metadata" +] [project.urls] Repository = "https://github.com/MetOffice/dagrunner"