From 61e0004c040a8749c5c8324c2aab9b1c84d8ea66 Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Tue, 23 Dec 2025 12:57:43 +1100 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Configure=20dependabot?= =?UTF-8?q?=20to=20ignore=20Python=20version=20updates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Python version should be constrained by the anaconda distribution version specified in environment.yml, not updated independently by dependabot. --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bb2ad36d..1ab7ca35 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -21,3 +21,5 @@ updates: ignore: - dependency-name: "jupyter-book" versions: [">=2.0"] + - dependency-name: "python" + # Python version should be constrained by the anaconda distribution version From ecf47e95362b60408db6dfaa35277cad314f51f5 Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Tue, 23 Dec 2025 14:20:31 +1100 Subject: [PATCH 2/2] Fix dependabot python ignore rule to include versions constraint --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1ab7ca35..04804108 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -23,3 +23,4 @@ updates: versions: [">=2.0"] - dependency-name: "python" # Python version should be constrained by the anaconda distribution version + versions: [">0"]