From 5f0ce97330bd09c0b1c97e62478ebaaf41aacfe0 Mon Sep 17 00:00:00 2001 From: Naomi Slater <23469+mechanomi@users.noreply.github.com> Date: Mon, 28 Oct 2019 13:44:19 +0100 Subject: [PATCH 1/6] Update config module name --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 64b75e24..e583b8c3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,4 +1,4 @@ -from crate.theme.rtd.conf.crate_python import * +from crate.theme.rtd.conf.clients_python import * html_favicon = None site_url = 'https://crate.io/docs/clients/python/en/latest/' From ddc90a868ae445e670c100c2782fcba03846c90c Mon Sep 17 00:00:00 2001 From: Naomi Slater <23469+mechanomi@users.noreply.github.com> Date: Tue, 29 Oct 2019 15:14:05 +0100 Subject: [PATCH 2/6] Require crate-docs-theme>=0.7 --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 88ebe35e..b977fe83 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,7 +1,7 @@ # don't pin crate version numbers so the latest will always be pulled when you # set up your environment from scratch -crate-docs-theme +crate-docs-theme>=0.7 # packages for local dev From 8f550c4436330d926eee998e3138ceeb7ac35ca3 Mon Sep 17 00:00:00 2001 From: Naomi Slater <23469+mechanomi@users.noreply.github.com> Date: Wed, 29 Apr 2020 17:28:24 +0200 Subject: [PATCH 3/6] Config update for crate-docs-theme 0.9.0 --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index e583b8c3..8bad6dae 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,7 +1,7 @@ -from crate.theme.rtd.conf.clients_python import * +from crate.theme.rtd.conf.python import * html_favicon = None -site_url = 'https://crate.io/docs/clients/python/en/latest/' +site_url = 'https://crate.io/docs/python/en/latest/' extensions = ['sphinx_sitemap'] rst_prolog = """ From 8b196568a4a7592f2ca482ece4cee5bd68586e4d Mon Sep 17 00:00:00 2001 From: Naomi Slater <23469+mechanomi@users.noreply.github.com> Date: Thu, 7 May 2020 15:50:34 +0200 Subject: [PATCH 4/6] Prune config (no longer needed) --- docs/conf.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 8bad6dae..11d47f7d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,8 +1,4 @@ from crate.theme.rtd.conf.python import * -html_favicon = None - -site_url = 'https://crate.io/docs/python/en/latest/' -extensions = ['sphinx_sitemap'] rst_prolog = """ .. |nbsp| unicode:: 0xA0 From f7a8094f579385b5791dfa9542fc848ee4e57c25 Mon Sep 17 00:00:00 2001 From: Naomi Slater <23469+mechanomi@users.noreply.github.com> Date: Thu, 7 May 2020 18:47:33 +0200 Subject: [PATCH 5/6] Switch from .txt to .rst --- docs/appendices/{compatibility.txt => compatibility.rst} | 0 docs/appendices/{data-types.txt => data-types.rst} | 0 docs/appendices/{index.txt => index.rst} | 0 docs/{blobs.txt => blobs.rst} | 0 docs/{connect.txt => connect.rst} | 0 docs/{getting-started.txt => getting-started.rst} | 0 docs/{index.txt => index.rst} | 0 docs/{query.txt => query.rst} | 0 docs/{sqlalchemy.txt => sqlalchemy.rst} | 0 9 files changed, 0 insertions(+), 0 deletions(-) rename docs/appendices/{compatibility.txt => compatibility.rst} (100%) rename docs/appendices/{data-types.txt => data-types.rst} (100%) rename docs/appendices/{index.txt => index.rst} (100%) rename docs/{blobs.txt => blobs.rst} (100%) rename docs/{connect.txt => connect.rst} (100%) rename docs/{getting-started.txt => getting-started.rst} (100%) rename docs/{index.txt => index.rst} (100%) rename docs/{query.txt => query.rst} (100%) rename docs/{sqlalchemy.txt => sqlalchemy.rst} (100%) diff --git a/docs/appendices/compatibility.txt b/docs/appendices/compatibility.rst similarity index 100% rename from docs/appendices/compatibility.txt rename to docs/appendices/compatibility.rst diff --git a/docs/appendices/data-types.txt b/docs/appendices/data-types.rst similarity index 100% rename from docs/appendices/data-types.txt rename to docs/appendices/data-types.rst diff --git a/docs/appendices/index.txt b/docs/appendices/index.rst similarity index 100% rename from docs/appendices/index.txt rename to docs/appendices/index.rst diff --git a/docs/blobs.txt b/docs/blobs.rst similarity index 100% rename from docs/blobs.txt rename to docs/blobs.rst diff --git a/docs/connect.txt b/docs/connect.rst similarity index 100% rename from docs/connect.txt rename to docs/connect.rst diff --git a/docs/getting-started.txt b/docs/getting-started.rst similarity index 100% rename from docs/getting-started.txt rename to docs/getting-started.rst diff --git a/docs/index.txt b/docs/index.rst similarity index 100% rename from docs/index.txt rename to docs/index.rst diff --git a/docs/query.txt b/docs/query.rst similarity index 100% rename from docs/query.txt rename to docs/query.rst diff --git a/docs/sqlalchemy.txt b/docs/sqlalchemy.rst similarity index 100% rename from docs/sqlalchemy.txt rename to docs/sqlalchemy.rst From a2891973526fcb27eb8f566428adb9c914bbbd8c Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Thu, 14 Jul 2022 15:00:11 +0200 Subject: [PATCH 6/6] Documentation: Fix dependencies for version 0.23 https://crate.io/docs/python/en/0.23/ --- docs/requirements.txt | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index b977fe83..ced14fe9 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,14 +1 @@ -# don't pin crate version numbers so the latest will always be pulled when you -# set up your environment from scratch - -crate-docs-theme>=0.7 - -# packages for local dev - -sphinx-autobuild==0.6.0 - -# the next section should mirror the RTD environment - -alabaster>=0.7,<0.8,!=0.7.5 -setuptools<41 -sphinx==1.7.4 +crate-docs-theme