Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Run Trivy vulnerability scanner for Docker image
if: steps.dockerfile_check.outputs.exists == 'true' && steps.image_check.outputs.exists == 'true'
uses: aquasecurity/trivy-action@0.34.1
uses: aquasecurity/trivy-action@0.34.2
with:
image-ref: '${{ github.actor }}/${{ github.event.repository.name }}:latest'
format: 'template'
Expand All @@ -80,7 +80,7 @@ jobs:

- name: Run Trivy vulnerability scanner for Python package
if: steps.dockerfile_check.outputs.exists == 'false' || steps.image_check.outputs.exists == 'false'
uses: aquasecurity/trivy-action@0.34.1
uses: aquasecurity/trivy-action@0.34.2
with:
scan-type: 'fs'
scan-ref: '.'
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13
3.14
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM dhi.io/python:3.13.11-dev AS build
FROM dhi.io/python:3.14.3-dev AS build

ARG VERSION=0.0.0.dev

Expand All @@ -20,7 +20,7 @@ COPY ./uv.lock .
RUN uv version ${VERSION} && \
uv sync --frozen --no-cache --no-dev

FROM dhi.io/python:3.13.11
FROM dhi.io/python:3.14.3

# Set up environment variables for production
ENV PYTHONDONTWRITEBYTECODE=1
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ authors = [
{name = "Jack Stockley", email = "jack@jstockley.com"}
]
readme = "README.md"
requires-python = ">=3.13, <4.0"
requires-python = ">=3.14, <4.0"
dependencies = [
"fastapi[standard]==0.133.1",
"sqlalchemy==2.0.47",
"fastapi[standard]==0.135.1",
"sqlalchemy==2.0.48",
"sqlmodel==0.0.37",
"python-dotenv==1.2.1",
"python-dotenv==1.2.2",
"psycopg[binary]>=3.3.3",
]
license-files = ["LICENSE"]
Expand Down
Loading