Python 3.11 missing? #2728
-
Hello! Hopefully I've got the right repo to report this in. We use renovate via the github action. We configure it like this: - id: renovate-scan
name: Renovate
uses: renovatebot/[email protected]
with:
renovate-version: full
token: ${{ secrets.GITHUB_TOKEN }}
env:
RENOVATE_REPOSITORIES: "" # repo path
LOG_LEVEL: debug When it encounters python 3.11 in use, it adds the following comment: ⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: Pipfile.lock
This is only an issue with python 3.11. 3.10 and below work without issue. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
https://github.com/renovatebot/base-image is the base image which uses python 3.12, so your error is expected. why do you use the full image instead of the slim / normal image which can install required versions on the fly. |
Beta Was this translation helpful? Give feedback.
https://github.com/renovatebot/base-image
is the base image which uses python 3.12, so your error is expected.
why do you use the full image instead of the slim / normal image which can install required versions on the fly.