From c1ee49e2225f3ed7dc5b434cb90f8b3db3cc8351 Mon Sep 17 00:00:00 2001 From: Bob Date: Sat, 4 Jul 2026 21:48:25 +0000 Subject: [PATCH] fix(ci): ignore pytest 9 until Python 3.10 --- .github/dependabot.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 052dc5952..65c5d09ef 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,7 +15,13 @@ updates: # Maintain dependencies for pip/poetry # NOTE: too noisy, easier to update by hand - #- package-ecosystem: "pip" - # directory: "/" - # schedule: - # interval: "monthly" + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "monthly" + open-pull-requests-limit: 0 + ignore: + # pytest 9.0.3 is the first non-vulnerable release, but it requires + # Python >=3.10 while ActivityWatch still builds/releases on Python 3.9. + - dependency-name: "pytest" + versions: [">=9"]