Skip to content

Commit ef3fb5b

Browse files
authored
Unpin uv (#35)
1 parent 136ac2d commit ef3fb5b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
path: ~/.cache/uv
1919
key: publish-${{ hashFiles('pyproject.toml') }}
2020
- uses: extractions/setup-just@v2
21-
- run: curl -LsSf https://astral.sh/uv/0.2.11/install.sh | sh
21+
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
2222
- run: just publish
2323
env:
2424
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
path: ~/.cache/uv
2828
key: check-types-${{ hashFiles('pyproject.toml') }}
29-
- run: curl -LsSf https://astral.sh/uv/0.2.11/install.sh | sh
29+
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
3030
- uses: extractions/setup-just@v2
3131
- run: just install check-types
3232

@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
path: ~/.cache/uv
4343
key: lint-${{ hashFiles('pyproject.toml') }}
44-
- run: curl -LsSf https://astral.sh/uv/0.2.11/install.sh | sh
44+
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
4545
- uses: extractions/setup-just@v2
4646
- run: just install lint
4747

@@ -62,7 +62,7 @@ jobs:
6262
with:
6363
path: ~/.cache/uv
6464
key: ${{ github.job }}-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
65-
- run: curl -LsSf https://astral.sh/uv/0.2.11/install.sh | sh
65+
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
6666
- uses: extractions/setup-just@v2
6767
- run: just install test -vv
6868

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG PYTHON_VERSION
2-
FROM ghcr.io/astral-sh/uv:0.2.11 as uv
2+
FROM ghcr.io/astral-sh/uv:latest as uv
33
FROM python:${PYTHON_VERSION}-slim-bullseye
44

55
WORKDIR /app

Justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ install:
55
uv -q sync
66

77
test *args:
8-
uv -q run pytest -- {{args}}
8+
uv -q run pytest {{args}}
99

1010
lint:
1111
uv -q run ruff check .
@@ -30,6 +30,6 @@ test-integration *args:
3030

3131
publish:
3232
rm -rf dist/*
33-
uv tool run --from build python -- -m build --installer uv
33+
uv tool run --from build python -m build --installer uv
3434
uv tool run twine check dist/*
3535
uv tool run twine upload dist/* --username __token__ --password $PYPI_TOKEN

0 commit comments

Comments
 (0)