bito-code-review[bot] commented on PR #43640: URL: https://github.com/apache/superset/pull/43640#issuecomment-5448964515
<!-- Bito Reply --> The flagged issue is correct. Including `db2` in the `testcontainers` extra in `requirements/development.in` forces the installation of `ibm-db-sa`, which lacks Linux arm64 wheels and breaks the multi-platform development image build. To resolve this, remove `db2` from the `testcontainers` list in `requirements/development.in` as suggested. Would you like me to fetch all other comments on this PR to validate and implement fixes for them as well? **requirements/development.in** ``` -testcontainers[cockroachdb,cratedb,db2,mongodb,mssql,mysql,oracle,postgres,trino]>=4.15.0,<5 +testcontainers[cockroachdb,cratedb,mongodb,mssql,mysql,oracle,postgres,trino]>=4.15.0,<5 ``` -- 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]
