text paste
public text v1 · immutable#!/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"