From 56da63e80c384a871356d1ea6640802017f213b4 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Fri, 2 Sep 2022 11:38:30 -0400 Subject: [PATCH] chore(python): exclude setup.py in renovate config (#1570) We're planing to migrate from a handwritten setup.py to an autogenerated one and will maintain `setup.py` in the generator itself. --- synthtool/gcp/templates/python_library/renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synthtool/gcp/templates/python_library/renovate.json b/synthtool/gcp/templates/python_library/renovate.json index 566a70f3c..39b2a0ec9 100644 --- a/synthtool/gcp/templates/python_library/renovate.json +++ b/synthtool/gcp/templates/python_library/renovate.json @@ -5,7 +5,7 @@ ":preserveSemverRanges", ":disableDependencyDashboard" ], - "ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt"], + "ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py"], "pip_requirements": { "fileMatch": ["requirements-test.txt", "samples/[\\S/]*constraints.txt", "samples/[\\S/]*constraints-test.txt"] }