msyavuz opened a new pull request, #41197: URL: https://github.com/apache/superset/pull/41197
### SUMMARY `uv` already drives Python dependency compilation (`uv pip compile` via `scripts/uv-pip-compile.sh`) and every install site in CI and Docker (`setup-backend`, `Dockerfile`, `docker/pip-install.sh`). A few raw-`pip` call sites were left behind; this swaps them to the `uv pip` compatibility interface so the toolchain is consistent. Changed call sites: - **Makefile** — `superset`, `update-py`, `pre-commit` targets (bootstraps `uv` into the active venv, then `uv pip install`) - **CI** — `bashlib.sh` (`testdata` / `playwright_testdata`), `superset-app-cli`, `superset-python-presto-hive` No change to `requirements/*.txt` or `pyproject.toml` — this is the drop-in `uv pip` interface only, not a move to `uv.lock`/`uv sync`. CI sites already have `uv` installed system-wide via `setup-backend`, so they use `--system`. The intentional `command -v uv` fallbacks in `docker/docker-bootstrap.sh` (for older images) are left in place. ### BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF N/A — build/CI tooling only, no UI. ### TESTING INSTRUCTIONS - `make -n superset` / `make -n update-py` / `make -n pre-commit` show `uv pip install`. - E2E, app-cli, and presto-hive CI jobs build the editable package via `uv pip install --system -e .` and pass. - `bash -n .github/workflows/bashlib.sh` is clean. ### ADDITIONAL INFORMATION - [ ] Has associated issue: - [ ] Required feature flags: - [ ] Changes UI — No, build/CI tooling only. - [ ] Includes DB Migration — No. - [ ] Introduces new feature or API — No. - [ ] Removes existing feature or API — No. -- 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]
