Skip to content

Commit 05b1da4

Browse files
committed
import less
1 parent 87e58b7 commit 05b1da4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dev.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import shutil
55
import sys
66

7-
from pyperformance import _utils
7+
from pyperformance._utils import run_uv
88

99
REPO_ROOT = os.path.dirname(os.path.abspath(__file__))
1010
VENVS = os.path.join(REPO_ROOT, ".venvs")
@@ -44,7 +44,7 @@ def ensure_venv_ready(venvroot=None, kind="dev", venvsdir=VENVS):
4444
shutil.rmtree(venvroot)
4545
else:
4646
print(f"creating uv env at {relroot}...")
47-
ec, _, _ = _utils.run_uv(
47+
ec, _, _ = run_uv(
4848
"venv",
4949
"--python",
5050
sys.executable,
@@ -63,7 +63,7 @@ def ensure_venv_ready(venvroot=None, kind="dev", venvsdir=VENVS):
6363
if not isready:
6464
relroot = os.path.relpath(venvroot)
6565
print(f"uv env {relroot} not ready, installing dependencies...")
66-
ec, _, _ = _utils.run_uv(
66+
ec, _, _ = run_uv(
6767
"pip",
6868
"install",
6969
"--python",

0 commit comments

Comments
 (0)