Skip to content

Commit 19afb31

Browse files
committed
Update pre-commit and UV
1 parent 0d73e47 commit 19afb31

6 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/django-ci.yml

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

3131
- name: Install the project

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ repos:
1212
- id: check-added-large-files
1313
- id: check-ast
1414
- repo: https://github.com/psf/black
15-
rev: 25.11.0
15+
rev: 26.3.1
1616
hooks:
1717
- id: black
1818
- repo: https://github.com/asottile/pyupgrade
1919
rev: v3.21.2
2020
hooks:
2121
- id: pyupgrade
2222
- repo: https://github.com/astral-sh/uv-pre-commit
23-
rev: 0.9.16
23+
rev: 0.10.10
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.16 /uv /uvx /bin/
6+
COPY --from=ghcr.io/astral-sh/uv:0.10.10 /uv /uvx /bin/
77

88
COPY . /app
99
WORKDIR /app

ldapsync/receivers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
from .utils import sync_group, sync_user
1616

17-
1817
logger = logging.getLogger(__name__)
1918

2019

manage.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# SPDX-License-Identifier: MIT
66

77
"""Django's command-line utility for administrative tasks."""
8+
89
import os
910
import sys
1011

posixusers/tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
from .hashers import SHA256PasswordHasher, SHA512PasswordHasher
1010

11-
1211
# Test data from https://akkadia.org/drepper/SHA-crypt.txt
1312
SHA256_TEST_DATA = [
1413
[

0 commit comments

Comments
 (0)