From fb955549d4e0dc0f0ee704abdf7813c348728807 Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Mon, 2 Sep 2024 10:52:54 +0000 Subject: [PATCH] Add setuptools to the Dependabot ignore list (#1631) Since we can't update to setuptools v71+ due to its new approach to vendored dependencies: https://github.com/heroku/heroku-buildpack-python/pull/1630#issuecomment-2324236653 When this buildpack adds support for Python 3.13 we will also be dropping the global installs of setuptools and wheel. GUS-W-16637281. --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 366df6035..942ea5fa5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -25,6 +25,10 @@ updates: directory: "/" schedule: interval: "monthly" + ignore: + # We're not updating to setuptools v71+ due to its new approach to vendored dependencies: + # https://github.com/heroku/heroku-buildpack-python/pull/1630#issuecomment-2324236653 + - dependency-name: "setuptools" labels: - "dependencies" - "python"