From a23aa7b862f2b735669148d7ff8a75bcbed74f31 Mon Sep 17 00:00:00 2001 From: Martin Levy Date: Thu, 23 Mar 2023 16:48:55 -0700 Subject: [PATCH 1/3] fixed readthedocs docstring --- wwvb/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wwvb/config.py b/wwvb/config.py index 236a4e6..7ecf8e0 100644 --- a/wwvb/config.py +++ b/wwvb/config.py @@ -11,6 +11,7 @@ def readconfig(filename='wwvb.ini'): """ readconfig() :param filename: config file name + Read config file (which is wwvb.ini by default. """ cp = configparser.ConfigParser() From b8cf0d08976ab99c55cf00ad31cf17082d096732 Mon Sep 17 00:00:00 2001 From: Martin Levy Date: Thu, 23 Mar 2023 16:49:23 -0700 Subject: [PATCH 2/3] more fixes for readthedocs --- docs/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/Makefile b/docs/Makefile index 217f88c..3e9fecd 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -12,6 +12,7 @@ SPHINXOPTS ?= SPHINXBUILD ?= sphinx-build SOURCEDIR = . BUILDDIR = _build +STATICDIR = _static # Put it first so that "make" without argument is like "make help". help: @@ -22,4 +23,5 @@ help: # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile + mkdir -p ${BUILDDIR} ${STATICDIR} @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) From df329c3e0ef94782be6f4ab99ad9ce818b029d64 Mon Sep 17 00:00:00 2001 From: Martin Levy Date: Thu, 23 Mar 2023 16:59:29 -0700 Subject: [PATCH 3/3] more fixes for readthedocs --- docs/requirements.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/requirements.txt b/docs/requirements.txt index 5215769..e263ce4 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1 +1,3 @@ sphinx>=4.0.0 +myst_parser>=1.0.0 +sphinx_rtd_theme>=1.2.0