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>
14 lines
298 B
Bash
Executable File
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/*
|