Skip to content

Commit

Permalink
fix(install): revert use uv
Browse files Browse the repository at this point in the history
  • Loading branch information
Bing-su committed May 20, 2024
1 parent 6c357b3 commit a655127
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions install.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import annotations

import importlib.util
import os
import subprocess
import sys
from importlib.metadata import version # python >= 3.8
Expand Down Expand Up @@ -39,11 +38,7 @@ def is_installed(


def run_pip(*args):
subprocess.run([sys.executable, "-m", "pip", "install", *args], check=False)


def run_uv_pip(*args):
subprocess.run([sys.executable, "-m", "uv", "pip", "install", *args], check=False)
subprocess.run([sys.executable, "-m", "pip", "install", *args], check=True)


def install():
Expand All @@ -56,11 +51,6 @@ def install():
("protobuf", "4.25.3", "4.9999"),
]

if not is_installed("uv", "0.1.44", None):
run_pip("uv>=0.1.44")

os.environ["UV_PYTHON"] = sys.executable

pkgs = []
for pkg, low, high in deps:
if not is_installed(pkg, low, high):
Expand All @@ -75,7 +65,7 @@ def install():
pkgs.append(cmd)

if pkgs:
run_uv_pip(*pkgs)
run_pip(*pkgs)


try:
Expand Down

0 comments on commit a655127

Please sign in to comment.