Skip to content

Commit 7029041

Browse files
chore(deps): update all dependencies
1 parent 0969eb9 commit 7029041

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
python-version-file: ".python-version"
2525
- name: Set up uv
26-
uses: astral-sh/setup-uv@v6
26+
uses: astral-sh/setup-uv@v7
2727
with:
2828
enable-cache: true
2929
version-file: "pyproject.toml"

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
python-version-file: ".python-version"
2525
- name: Set up uv
26-
uses: astral-sh/setup-uv@v6
26+
uses: astral-sh/setup-uv@v7
2727
with:
2828
enable-cache: true
2929
version-file: "pyproject.toml"

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616

1717
# ruff - linting + formatting
1818
- repo: https://github.com/astral-sh/ruff-pre-commit
19-
rev: v0.13.3
19+
rev: v0.14.0
2020
hooks:
2121
- id: ruff
2222
name: ruff

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.13.7
1+
3.14.0

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13.7-slim-trixie AS python-base
1+
FROM python:3.14.0-slim-trixie AS python-base
22

33
ENV PYTHONUNBUFFERED=1 \
44
PYTHONDONTWRITEBYTECODE=1 \
@@ -9,7 +9,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
99

1010
FROM python-base AS builder-base
1111

12-
COPY --from=ghcr.io/astral-sh/uv:0.8.24 /uv /uvx /bin/
12+
COPY --from=ghcr.io/astral-sh/uv:0.9.3 /uv /uvx /bin/
1313

1414
WORKDIR $WORKDIR_PATH
1515

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ homepage = "https://github.com/smarlhens/python-boilerplate#readme"
1414
repository = "https://github.com/smarlhens/python-boilerplate"
1515

1616
[build-system]
17-
requires = ["uv_build>=0.8.12,<0.9.0"]
17+
requires = ["uv_build>=0.9.3,<0.10.0"]
1818
build-backend = "uv_build"
1919

2020
[dependency-groups]

0 commit comments

Comments
 (0)