From 256ea1143ad16f41b8805049dd779740fd73371f Mon Sep 17 00:00:00 2001 From: Yashvardhan Nanavati Date: Wed, 4 Oct 2023 12:56:13 -0400 Subject: [PATCH] Use py3.9 for Renovate bot runs These are the runs that are done on the server side i.e done by renovate bot on its own server. By default, renovate bot uses the latest python version for its runs and the recent failures were because of a bug in one of the python 3.12 libraries Refers to CLOUDDST-20512 --- .github/renovate.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index d1f989eb..953b7ef7 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,4 +1,7 @@ { + "constraints": { + "python": "==3.9" + }, "enabled": true, "enabledManagers": ["docker-compose", "dockerfile", "github-actions", "pip_requirements", "pyenv"], "branchConcurrentLimit": 5,