Skip to content
Open
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.12"
python-version: "3.14"
- run: pip install ruff
- run: ruff check src tests

Expand All @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.12"
python-version: "3.14"
# CPU-only torch first so sentence-transformers doesn't pull the CUDA wheels.
- run: pip install torch --index-url https://download.pytorch.org/whl/cpu
- run: pip install -e ".[dev]"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SIMOSphere AI Copilot Mini — self-contained ExApp image.
# Bakes the embedding model (e5-large, CPU) AND the prebuilt Nextcloud-docs index into the image,
# so the app runs fully offline: the only outbound call at runtime is to the user's chosen LLM.
FROM python:3.12-slim-bookworm
FROM python:3.14-slim-bookworm

ENV PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1 \
Expand Down