From e9856a6f260464610a88daea1d6904b994d1a33d Mon Sep 17 00:00:00 2001 From: Bousquin Date: Fri, 2 Feb 2024 10:50:37 -0600 Subject: [PATCH] Add requirements dev version --- .github/workflows/documentation_test.yml | 7 ++----- docs/source/index.rst | 2 +- requirements_dev.txt | 6 ++++++ 3 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 requirements_dev.txt diff --git a/.github/workflows/documentation_test.yml b/.github/workflows/documentation_test.yml index b6d9d7c..46bd93d 100644 --- a/.github/workflows/documentation_test.yml +++ b/.github/workflows/documentation_test.yml @@ -30,16 +30,13 @@ jobs: - name: Install dependencies run: | pip install -r requirements.txt - pip install sphinx sphinx_rtd_theme - pip install sphinxcontrib-spelling - pip install nbsphinx - pip install nbsphinx_link + pip install -r requirements_dev.txt - name: Sphinx build run: | #sphinx-build docs/source _build cd docs make html - #make doctest + make doctest - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: diff --git a/docs/source/index.rst b/docs/source/index.rst index 01d17f4..bf71ae0 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -45,7 +45,7 @@ Domain experts must decide what data meets their quality standards for data comp notebooks/Harmonize_CapeCod_Detailed notebooks/Harmonize_GOM -To instead run tutorials directly in ipython notebooks, see: `demos `_ +To instead run tutorials directly in ipython notebooks or using R, see: `demos `_ .. toctree:: :maxdepth: 1 diff --git a/requirements_dev.txt b/requirements_dev.txt new file mode 100644 index 0000000..b69e137 --- /dev/null +++ b/requirements_dev.txt @@ -0,0 +1,6 @@ +pytest +coverage +sphinx sphinx_rtd_theme +sphinxcontrib-spelling +nbsphinx +nbsphinx_link \ No newline at end of file