From 215f3c421c43bec45f6f1852d3524564720888c0 Mon Sep 17 00:00:00 2001 From: Otavio Macedo Date: Tue, 4 Jan 2022 14:16:33 +0000 Subject: [PATCH] chore: excluding setuptools from dependabot (#3314) `setuptools` version 60.2.0 and above require Python >= 3.7. If dependabot updates it, the build will fail, as we have jobs that run on Python 3.6. --- By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license]. [Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0 --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 33abf8c19a..5e59efe7c5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -48,6 +48,8 @@ updates: labels: - dependencies - language/python + ignore: + - dependency-name: "setuptools" - package-ecosystem: gomod directory: '/packages/@jsii/go-runtime'