Files
windmill/python-client/install.sh
Ruben Fiszel 6eca08480a chore: remove legacy wmill_pg python client (#8155)
The wmill_pg package (psycopg2 wrapper for running PostgreSQL queries)
has been fully replaced by Windmill's native PostgreSQL support.
Remove the package directory and all references from build, publish,
install, version, LSP, and dependabot configs.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-01 08:52:35 +00:00

14 lines
298 B
Bash
Executable File

#!/bin/bash
set -e
rm windmill-api/dist/* || true
rm wmill/dist/* || true
./build.sh
pip3 install windmill-api/dist/*.whl --force-reinstall --user --break-system-packages
pip3 install wmill/dist/*.whl --force-reinstall --user --break-system-packages
rm -rf windmill-api/
rm -rf wmill/dist/*