bito-code-review[bot] commented on PR #44124:
URL: https://github.com/apache/superset/pull/44124#issuecomment-5611491705
<!-- Bito Reply -->
The flagged issue is correct. The `Dockerfile` and
`scripts/docker-build-extra-flags.sh` have been updated to use Python 3.11.16,
but the development environment configuration (typically found in
`.devcontainer/devcontainer.json` or similar) appears to still reference
3.11.13, causing a version mismatch.
To resolve this, you should update the Python version in your development
container configuration file to match the production build (3.11.16). Please
check your `.devcontainer/devcontainer.json` file and update the image or build
argument to use `3.11.16-slim-trixie`.
There are no other comments on this pull request to address.
**.devcontainer/devcontainer.json**
```
// Update the image or build argument to match the production version:
"build": {
"args": {
"PY_VER": "3.11.16-slim-trixie"
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]