Skip to content
Merged
Changes from all commits
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
6 changes: 4 additions & 2 deletions scripts/check_system_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def install_package(*, uv: str, package: str):
check=True,
)

logging.info(f"Checking that `{package}` can be imported.")
logging.info(f"Checking that `{package}` can be imported with `{sys.executable}`.")
code = subprocess.run(
[sys.executable, "-c", f"import {package}"],
cwd=temp_dir,
Expand Down Expand Up @@ -82,7 +82,9 @@ def install_package(*, uv: str, package: str):
)

# Ensure that the package (`pylint`) is installed.
logging.info("Checking that `pylint` is installed.")
logging.info(
f"Checking that `pylint` is installed with `{sys.executable} -m pip`."
)
code = subprocess.run(
[sys.executable, "-m", "pip", "show", "pylint"],
cwd=temp_dir,
Expand Down
Loading