bito-code-review[bot] commented on PR #43022: URL: https://github.com/apache/superset/pull/43022#issuecomment-5354752637
<!-- Bito Reply --> Renaming the package in `pyproject.toml` creates a new distribution identity, which is the intended effect of this change. Keeping the established project name while only translating catalogs would not achieve the goal of creating a distinct, localized distribution that can coexist with the original `apache-superset` package. If the objective is to provide a separate, localized build, the current approach of renaming the package is the correct way to ensure dependency resolution treats them as distinct entities. **pyproject.toml** ``` -name = "apache_superset" -description = "A modern, enterprise-ready business intelligence web application" +name = "plataforma_apache_superset" +description = "Plataforma Apache Superset de exploracao e analise de dados" ``` -- 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]
