Skip to content

Commit

Permalink
pip download wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
xjia1 committed Nov 7, 2023
1 parent e2ed725 commit f1813a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions buildbot/pip/pip_download
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ download() {
python3 -m venv sandbox
source sandbox/bin/activate
pip install --upgrade pip
pip download -d /output 'wheel'
pip download -d /output 'buildbot[bundle]==3.9.2'
pip download -d /output 'buildbot-www-react==3.9.2'
pip download -d /output 'txrequests==0.9.6'
Expand Down
2 changes: 1 addition & 1 deletion buildbot/pip/sandbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func InitSandbox(workdir string) error {
return fmt.Errorf("%s: %v", cmd.String(), err)
}

cmd = exec.Command(pip, "install", "--no-index", "--find-links="+tempDir, "buildbot[bundle]", "buildbot-www-react", "txrequests")
cmd = exec.Command(pip, "install", "--no-index", "--find-links="+tempDir, "wheel", "buildbot[bundle]", "buildbot-www-react", "txrequests")
cmd.Dir = workdir
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
Expand Down

0 comments on commit f1813a8

Please sign in to comment.