tiya-9975 opened a new pull request, #37302: URL: https://github.com/apache/superset/pull/37302
### SUMMARY The official Superset Docker image installs python-geohash==0.8.5, which requires a C++ compiler to build from source. However, the image does not include g++ or build-essential, causing pip install to fail inside the container. This change ensures native Python extensions can compile correctly by installing the minimal C++ toolchain in the apt layer. --- ### BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF N/A – infrastructure change (Docker image build) --- ### TESTING INSTRUCTIONS 1. Build the Superset Docker image. 2. Run a container from the built image. 3. Run: `pip install python-geohash` 4. Verify that the package builds and installs successfully without errors. Previously this failed with: -- 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]
