Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/actions/install-common-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ inputs:
python-version:
description: Python version to install with 'uv' if 'install-uv' is true
required: false
default: "3.13"
default: "3.14"

runs:
using: composite
Expand Down
2 changes: 1 addition & 1 deletion application/backend/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
default_language_version:
python: python3.13 # Should match the Python version used by the app (set in backend/pyproject.toml)
python: python3.14 # Should match the Python version used by the app (set in backend/pyproject.toml)

repos:
- repo: https://github.com/astral-sh/uv-pre-commit
Expand Down
4 changes: 2 additions & 2 deletions application/backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "geti-tune"
version = "0.1.0"
description = "Geti Tune"
readme = "readme.md"
requires-python = ">=3.13,<3.14"
requires-python = ">=3.14,<3.15"

dependencies = [
"fastapi[standard]~=0.121.2",
Expand Down Expand Up @@ -184,6 +184,6 @@ pythonpath = [
]

[tool.pyrefly]
python-version = "3.13.0"
python-version = "3.14.0"
project-includes = ["app/**/*.py*", "pyinstaller/**/*.py*", "tests/**/*.py*"]
ignore-missing-imports = ["*"]
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ async def test_cleanup_connection_removes_pc(self, fxt_manager, fxt_offer):
assert "test_id" not in fxt_manager._pcs
assert not fxt_manager._frame_broadcaster.is_registered("test_id")

@pytest.mark.asyncio
def test_set_input_stores_data(self, fxt_manager):
data = InputData(webrtc_id="test_id", conf_threshold=0.5)
fxt_manager.set_input(data)
Expand Down
1,846 changes: 978 additions & 868 deletions application/backend/uv.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions application/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
##############
# Backend base
##############
FROM python:3.13-slim@sha256:3de9a8d7aedbb7984dc18f2dff178a7850f16c1ae7c34ba9d7ecc23d0755e35f AS backend-base
FROM python:3.14-slim@sha256:6a27522252aef8432841f224d9baaa6e9fce07b07584154fa0b9a96603af7456 AS backend-base

# uv / uvx
COPY --from=docker.io/astral/uv:0.10.4@sha256:4cac394b6b72846f8a85a7a0e577c6d61d4e17fe2ccee65d9451a8b3c9efb4ac /uv /uvx /bin/
Expand Down Expand Up @@ -101,7 +101,7 @@ RUN npm run build
#########################
# Base for CPU, GPU and XPU runtime images
#########################
FROM python:3.13-slim@sha256:3de9a8d7aedbb7984dc18f2dff178a7850f16c1ae7c34ba9d7ecc23d0755e35f AS runtime-base
FROM python:3.14-slim@sha256:6a27522252aef8432841f224d9baaa6e9fce07b07584154fa0b9a96603af7456 AS runtime-base

ARG STATIC_FILES_DIR=""
ENV STATIC_FILES_DIR=${STATIC_FILES_DIR}
Expand Down
292 changes: 154 additions & 138 deletions library/uv.lock

Large diffs are not rendered by default.

Loading