From 60b3d72d9e304605e78afa70fe9febadf8edf6a2 Mon Sep 17 00:00:00 2001 From: Dominic Oram Date: Fri, 27 Oct 2023 11:02:47 +0100 Subject: [PATCH 1/2] (#218) Fix docs build by providing default arg --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 89f57c78f2..bc3adf5d90 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -173,6 +173,7 @@ "url": f"https://github.com/{github_user}/{github_repo}/releases", } ], + "navigation_with_keys": False, } # A dictionary of values to pass into the template engine’s context for all pages From b980f9bf3df0e0042a650dd9d46540d12f7589ab Mon Sep 17 00:00:00 2001 From: Dominic Oram Date: Sun, 29 Oct 2023 17:39:57 +0000 Subject: [PATCH 2/2] (#218) Pin builds to 3.11 as p4p doesn't build in 3.12 --- .github/workflows/code.yml | 1 + .github/workflows/docs.yml | 1 + .github/workflows/linkcheck.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 942e3b0487..5495e291cd 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -25,6 +25,7 @@ jobs: with: requirements_file: requirements-dev-3.x.txt install_options: -e .[dev] + python_version: "3.11" - name: Lint run: tox -e pre-commit,mypy diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d89a086243..821bc7fce1 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -29,6 +29,7 @@ jobs: with: requirements_file: requirements-dev-3.x.txt install_options: -e .[dev] + python_version: "3.11" - name: Build docs run: tox -e docs diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml index a245b89522..e2d2be053a 100644 --- a/.github/workflows/linkcheck.yml +++ b/.github/workflows/linkcheck.yml @@ -19,6 +19,7 @@ jobs: with: requirements_file: requirements-dev-3.x.txt install_options: -e .[dev] + python_version: "3.11" - name: Check links run: tox -e docs build -- -b linkcheck