Skip to content

Commit 68f6fc9

Browse files
committed
bump to python 3.14
1 parent c98b950 commit 68f6fc9

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/.github/workflows/ci.yaml.jinja

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
- name: Set up uv
1515
run: pipx install uv
16-
- uses: actions/setup-python@v5
16+
- uses: actions/setup-python@v6
1717
with:
1818
python-version: 3.13
1919
- name: Install package
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
if: github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, 'cd skip')
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
- name: Bump version
3333
uses: TriPSs/conventional-changelog-action@v3
3434
id: version

src/.github/workflows/{% if docs %}docs.yaml{% endif %}

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
publish:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
with:
1414
fetch-depth: 0
1515
- name: Set up uv
1616
run: pipx install uv
17-
- uses: actions/setup-python@v5
17+
- uses: actions/setup-python@v6
1818
with:
19-
python-version: 3.13
19+
python-version: 3.14
2020
- name: Install package
2121
run: uv sync --frozen --all-extras
2222
- name: Publish docs

src/{% if docker %}Dockerfile{% endif %}.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM python:3.13-alpine AS base
1+
FROM python:3.14-alpine AS base
22
WORKDIR /app
33

44
### Builder ###
55
FROM base AS builder
66

77
# Install deps
8-
RUN pip install --no-cache-dir uv~=0.8.0
8+
RUN pip install --no-cache-dir uv~=0.9.0
99
COPY pyproject.toml uv.lock ./
1010
RUN uv sync --frozen --no-dev --no-install-project
1111

0 commit comments

Comments
 (0)