Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
import less
  • Loading branch information
maurycy committed Oct 25, 2025
commit 05b1da4eadfe7c21404a663f50701d91b6288bb6
6 changes: 3 additions & 3 deletions dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import shutil
import sys

from pyperformance import _utils
from pyperformance._utils import run_uv

REPO_ROOT = os.path.dirname(os.path.abspath(__file__))
VENVS = os.path.join(REPO_ROOT, ".venvs")
Expand Down Expand Up @@ -44,7 +44,7 @@ def ensure_venv_ready(venvroot=None, kind="dev", venvsdir=VENVS):
shutil.rmtree(venvroot)
else:
print(f"creating uv env at {relroot}...")
ec, _, _ = _utils.run_uv(
ec, _, _ = run_uv(
"venv",
"--python",
sys.executable,
Expand All @@ -63,7 +63,7 @@ def ensure_venv_ready(venvroot=None, kind="dev", venvsdir=VENVS):
if not isready:
relroot = os.path.relpath(venvroot)
print(f"uv env {relroot} not ready, installing dependencies...")
ec, _, _ = _utils.run_uv(
ec, _, _ = run_uv(
"pip",
"install",
"--python",
Expand Down
Loading