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
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Install dependencies
run: uv sync --extra dev
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Install dependencies
run: uv sync --extra dev
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Install dependencies
run: uv sync --extra dev
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Install generator
run: uv sync
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Install generator
run: uv sync
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Install generator
run: uv sync
Expand Down Expand Up @@ -345,7 +345,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Install generator
run: uv sync
Expand Down Expand Up @@ -427,7 +427,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Install generator
run: uv sync
Expand Down Expand Up @@ -501,7 +501,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Install generator
run: uv sync
Expand Down Expand Up @@ -560,7 +560,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Install generator
run: uv sync
Expand Down Expand Up @@ -612,7 +612,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Install generator
run: uv sync
Expand Down Expand Up @@ -665,7 +665,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Set up Bun
uses: oven-sh/setup-bun@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
python-version: '3.14'

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14"

- name: Build package
run: uv build
Expand Down
4 changes: 2 additions & 2 deletions ai_agent_test/backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# Build stage
FROM python:3.12-slim AS builder
FROM python:3.14-slim AS builder

ENV PYTHONUNBUFFERED=1
ENV PYTHONDONTWRITEBYTECODE=1
Expand All @@ -26,7 +26,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \


# Runtime stage
FROM python:3.12-slim
FROM python:3.14-slim

ENV PYTHONUNBUFFERED=1
ENV PYTHONDONTWRITEBYTECODE=1
Expand Down
Loading