Skip to content

Commit 9327010

Browse files
committed
Replace pipx with uv tool install
Use `uv tool install` instead of `pipx install` for bakery installation. Update prerequisites to reference uv instead of pipx.
1 parent db145f6 commit 9327010

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Additional documentation:
136136
Build prerequisites
137137

138138
* [python](https://docs.astral.sh/uv/guides/install-python/)
139-
* [pipx](https://pipx.pypa.io/stable/installation/)
139+
* [uv](https://docs.astral.sh/uv/getting-started/installation/)
140140
* [docker buildx bake](https://github.com/docker/buildx#installing)
141141
* [just](https://just.systems/man/en/prerequisites.html)
142142
* [gh](https://github.com/cli/cli#installation) (required while repositories are private)

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
install-bakery *OPTS:
44
#!/bin/bash
55
# TODO: Update this after package is published somewhere
6-
pipx install {{OPTS}} 'git+ssh://git@github.com/posit-dev/images-shared.git@main#egg=posit-bakery&subdirectory=posit-bakery'
6+
uv tool install {{OPTS}} 'git+ssh://git@github.com/posit-dev/images-shared.git@main#egg=posit-bakery&subdirectory=posit-bakery'
77

88
install-goss:
99
#!/bin/bash

0 commit comments

Comments
 (0)