From 8b623f7cbc3a62f1378caa7f9db1e3807452b3f0 Mon Sep 17 00:00:00 2001 From: bojiang Date: Sat, 28 Sep 2024 10:04:23 +0800 Subject: [PATCH] fix: force bentoml build with Python 3.9 --- src/make.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/make.py b/src/make.py index 42897c01..b1ea85a5 100644 --- a/src/make.py +++ b/src/make.py @@ -41,8 +41,11 @@ def ensure_venv(req_txt_file, venv_dir): [ sys.executable, "-m", + "uv", "venv", venv_dir, + "-p", + "3.9", ], check=True, )