From ee163d14079980a92b1aaf7344594bc0d3c85170 Mon Sep 17 00:00:00 2001 From: Mekhla Kapoor <54870020+mekhlakapoor@users.noreply.github.com> Date: Mon, 23 Sep 2024 16:22:57 -0700 Subject: [PATCH 1/2] update readthedocs.yaml --- .readthedocs.yaml | 3 ++- src/aind_metadata_mapper/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 2cdf6ef7..ea19de15 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -3,7 +3,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.8" + python: "3.10" python: install: @@ -11,3 +11,4 @@ python: path: . extra_requirements: - dev + - doc diff --git a/src/aind_metadata_mapper/__init__.py b/src/aind_metadata_mapper/__init__.py index fe16d992..366b5f5b 100644 --- a/src/aind_metadata_mapper/__init__.py +++ b/src/aind_metadata_mapper/__init__.py @@ -1,3 +1,3 @@ """Init package""" -__version__ = "0.18.3" +__version__ = "0.18.4" From af83cf45ee292c1a094f47c4a33d699e131cb164 Mon Sep 17 00:00:00 2001 From: Mekhla Kapoor <54870020+mekhlakapoor@users.noreply.github.com> Date: Mon, 23 Sep 2024 16:45:04 -0700 Subject: [PATCH 2/2] remove dev from docs req (#171) --- .readthedocs.yaml | 1 - README.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index ea19de15..de9274b2 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -10,5 +10,4 @@ python: - method: pip path: . extra_requirements: - - dev - doc diff --git a/README.md b/README.md index 5631a461..d137acf2 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ sphinx-apidoc -o docs/source/ src ``` Then to create the documentation HTML files, run ```bash -sphinx-build -b html doc_template/empty_source/ doc_template/build/html +sphinx-build -b html docs/source/ docs/build/html ``` More info on sphinx installation can be found [here](https://www.sphinx-doc.org/en/master/usage/installation.html).