From aec4351bd5d81089e10e50b1eb9d8c95e6f44d83 Mon Sep 17 00:00:00 2001 From: Yannis Chatzikonstantinou Date: Mon, 29 Jan 2024 01:43:39 +0200 Subject: [PATCH 1/4] update requirements --- docs/doc-requirements.txt | 5 +++++ docs/requirements.txt | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 docs/doc-requirements.txt diff --git a/docs/doc-requirements.txt b/docs/doc-requirements.txt new file mode 100644 index 00000000..1578530a --- /dev/null +++ b/docs/doc-requirements.txt @@ -0,0 +1,5 @@ +sphinx>=5.2.3 +sphinxcontrib-programoutput +sphinx-inline-tabs +sphinx-copybutton +furo \ No newline at end of file diff --git a/docs/requirements.txt b/docs/requirements.txt index 621e2aad..1578530a 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1 +1,5 @@ -sphinx>=3.2.1 +sphinx>=5.2.3 +sphinxcontrib-programoutput +sphinx-inline-tabs +sphinx-copybutton +furo \ No newline at end of file From d34f55ad7ee8aa0c887de04b2575659ce747ade7 Mon Sep 17 00:00:00 2001 From: Yannis Chatzikonstantinou Date: Mon, 29 Jan 2024 01:43:49 +0200 Subject: [PATCH 2/4] update theme selection --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 318433df..0496d220 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -45,7 +45,7 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'alabaster' +html_theme = 'furo' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, From cd29656837879fc4690ddd4286bba913f8812899 Mon Sep 17 00:00:00 2001 From: Yannis Chatzikonstantinou Date: Mon, 29 Jan 2024 01:54:19 +0200 Subject: [PATCH 3/4] remove unneeded requirements file --- docs/doc-requirements.txt | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 docs/doc-requirements.txt diff --git a/docs/doc-requirements.txt b/docs/doc-requirements.txt deleted file mode 100644 index 1578530a..00000000 --- a/docs/doc-requirements.txt +++ /dev/null @@ -1,5 +0,0 @@ -sphinx>=5.2.3 -sphinxcontrib-programoutput -sphinx-inline-tabs -sphinx-copybutton -furo \ No newline at end of file From 3574784eaa6e3a40061da9e9e68c1ed646021515 Mon Sep 17 00:00:00 2001 From: Yannis Chatzikonstantinou Date: Mon, 29 Jan 2024 01:54:36 +0200 Subject: [PATCH 4/4] specify requirements file --- .readthedocs.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index d9ee7902..e1d9d310 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -17,6 +17,8 @@ sphinx: # We recommend specifying your dependencies to enable reproducible builds: # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html -# python: -# install: -# - requirements: docs/requirements.txt \ No newline at end of file +python: + install: + - requirements: docs/requirements.txt + - method: pip + path: . \ No newline at end of file