From 5e4779495607b106bbf59b697212723ac60b3349 Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Tue, 23 Dec 2025 13:04:22 +1100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Configure=20dependabot=20t?= =?UTF-8?q?o=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 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3dd56ade..ebeb6563 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -14,5 +14,12 @@ updates: interval: weekly - package-ecosystem: "conda" directory: "/" + commit-message: + prefix: ⬆️ schedule: - interval: "weekly" \ No newline at end of file + interval: "weekly" + ignore: + - dependency-name: "jupyter-book" + versions: [">=2.0"] + - dependency-name: "python" + # Python version should be constrained by the anaconda distribution version \ No newline at end of file