From bbfeab8be1dd0d0678eb0f4cb68fbe8ecd2869d4 Mon Sep 17 00:00:00 2001 From: David Stansby Date: Sun, 24 Aug 2025 09:46:55 +0100 Subject: [PATCH 1/5] Pin exact version of pydata-sphinx-theme --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 55a2847..14f8c9f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ classifiers = [ "Topic :: Documentation :: Sphinx", ] dependencies = [ - "pydata-sphinx-theme>=0.13.1", + "pydata-sphinx-theme==0.15.4", "matplotlib", ] From dd08aba79ba0ea013a3444b599ead960336cbe67 Mon Sep 17 00:00:00 2001 From: David Stansby Date: Sun, 24 Aug 2025 09:47:10 +0100 Subject: [PATCH 2/5] Add dependabot config to update python dependencies --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 34902e5..f9086b3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,12 @@ updates: actions: patterns: - "*" + + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + groups: + python: + patterns: + - "*" From bb13a0ceda698c97d221e4424f68adb5f5154c25 Mon Sep 17 00:00:00 2001 From: David Stansby Date: Sun, 24 Aug 2025 09:50:52 +0100 Subject: [PATCH 3/5] Bump version of Python orb --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..d3def91 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "editor.formatOnSave": false +} From f83691e3411f926076660c320becaebd5182d693 Mon Sep 17 00:00:00 2001 From: David Stansby Date: Sun, 24 Aug 2025 09:55:57 +0100 Subject: [PATCH 4/5] Build on Python 3.11 --- .circleci/config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index dcf06ca..3231e38 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,11 +2,13 @@ version: 2.1 orbs: - python: circleci/python@1.2.1 + python: circleci/python@3.2.0 jobs: build_docs: - executor: python/default + executor: + name: python/default + tag: "3.11" steps: - checkout - python/install-packages: From f7b820a73b0c3406f64836bd9f89c05433752b4b Mon Sep 17 00:00:00 2001 From: David Stansby Date: Sun, 24 Aug 2025 10:53:50 +0100 Subject: [PATCH 5/5] Delete .vscode/settings.json --- .vscode/settings.json | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index d3def91..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "editor.formatOnSave": false -}