Skip to content

Commit 2b68a45

Browse files
committed
Upgrades to uv and pre-commit
1 parent 0be49fb commit 2b68a45

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/django-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
uses: astral-sh/setup-uv@v6
2626
with:
2727
enable-cache: true
28-
version: "0.9.10"
28+
version: "0.9.16"
2929
python-version: ${{ matrix.python-version }}
3030

3131
- name: Install the project
3232
run: uv sync --locked --all-extras --dev
3333

3434
- name: pre-commit
3535
run: |
36-
uvx pre-commit@4.4.0 run --all-files
36+
uvx pre-commit@4.5.0 run --all-files
3737
3838
- name: Run Tests
3939
run: |

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ repos:
1616
hooks:
1717
- id: black
1818
- repo: https://github.com/asottile/pyupgrade
19-
rev: v3.21.1
19+
rev: v3.21.2
2020
hooks:
2121
- id: pyupgrade
2222
- repo: https://github.com/astral-sh/uv-pre-commit
23-
rev: 0.9.10
23+
rev: 0.9.16
2424
hooks:
2525
- id: uv-export

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: CC0-1.0
44

55
FROM python:3.14
6-
COPY --from=ghcr.io/astral-sh/uv:0.9.10 /uv /uvx /bin/
6+
COPY --from=ghcr.io/astral-sh/uv:0.9.16 /uv /uvx /bin/
77

88
COPY . /app
99
WORKDIR /app

0 commit comments

Comments
 (0)