All pastes #52n4Wdf4AH Raw Edit

text paste

public text v1 · immutable
#52n4Wdf4AH ·published 2026-05-31 21:10 UTC
rendered paste body
#!/bin/bashsetup_uv_ast() {    uv venv    uv python install 3.15t    uv python pin 3.15t    uv pip install ast-serialize    uv pip freeze | grep ast-serialize}UV_TEST_TMP=$(mktemp -d -p /tmp uv-test-XXXX)cd "$UV_TEST_TMP"echo "**** First try: **** "setup_uv_astecho "**** Second try, after blowing away .venv: ****"rm -R .venvsetup_uv_astrm -R "$UV_TEST_TMP"