Skip to content

Commit a36040f

Browse files
committed
Use uv tool to install poe
1 parent a7f3b50 commit a36040f

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/build-binaries.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ jobs:
4444
with:
4545
workspaces: temporalio/bridge -> target
4646
- uses: astral-sh/setup-uv@v5
47-
- run: python -m pip install poethepoet
4847
- run: uv sync --all-extras
4948
- run: uv build
5049

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
version: "23.x"
4848
repo-token: ${{ secrets.GITHUB_TOKEN }}
4949
- uses: astral-sh/setup-uv@v5
50-
- run: python -m pip install poethepoet
50+
- run: uv tool install poethepoet
5151
- run: uv sync --all-extras
5252
- run: poe bridge-lint
5353
if: ${{ matrix.clippyLinter }}

.github/workflows/run-bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
- uses: astral-sh/setup-uv@v5
4848
# Build
49-
- run: python -m pip install --upgrade wheel poethepoet
49+
- run: uv tool install poethepoet
5050
- run: uv sync --all-extras
5151
- run: poe build-develop-with-release
5252

scripts/_proto/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:3.10
22

3-
RUN python -m pip install --upgrade wheel poethepoet
43
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
4+
RUN uv tool install poethepoet
55
VOLUME ["/api_new", "/bridge_new"]
66

77
COPY ./ ./

0 commit comments

Comments
 (0)