auto install uv

This commit is contained in:
w-e-w 2025-02-28 23:08:27 +09:00
parent 9f670bc7e8
commit c59a2badd2
No known key found for this signature in database
GPG Key ID: 52CFE43196F6280E

View File

@ -1,3 +1,4 @@
import sys
import shlex
import subprocess
from functools import wraps
@ -8,6 +9,11 @@ def patch():
return
print("using uv")
try:
subprocess.run(['uv', '-V'])
except FileNotFoundError:
subprocess.run([sys.executable, '-m', 'pip', 'install', 'uv'])
subprocess.__original_run = subprocess.run
@wraps(subprocess.__original_run)