Skip to content

Commit

Permalink
fix: pre install wheel into venv to allow bdist_wheel intallations
Browse files Browse the repository at this point in the history
  • Loading branch information
solarw committed Jun 18, 2024
1 parent bccc507 commit 527f7c9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions operate/services/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,17 @@ def _setup_agent(working_dir: Path) -> None:
venv = working_dir / "venv"
pbin = str(venv / "bin" / "python")

# Install wheel to install agent dependencies
_run_cmd(
args=[
pbin,
"-m",
"pip",
"install",
"wheel",
],
)

# Install agent dependencies
_run_cmd(
args=[
Expand Down

0 comments on commit 527f7c9

Please sign in to comment.