From b897cee6b99448f37f72ed31adb3cce1eab7d396 Mon Sep 17 00:00:00 2001 From: David Perl Date: Mon, 3 Aug 2026 10:41:36 +0200 Subject: [PATCH] wip: check cv2 in ci --- .gitea/workflows/ci.yml | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 405276b4..56baef1d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -100,6 +100,8 @@ jobs: git clone https://gitea.psi.ch/bec/${{ matrix.plugin_repo }}.git uv pip install -e ./mx_bec uv pip install -e ./${{ matrix.plugin_repo }} + uv pip list | grep -i -E 'opencv|numpy' + python -c "import cv2; print(cv2.__file__, cv2.__version__)" - name: Run Pytest env: diff --git a/pyproject.toml b/pyproject.toml index 225e4ed7..bd280e42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ dependencies = [ "uv", "gunicorn", "aarecommon>=0.2.0", - "pydantic==2.11.4", + "pydantic>=2.11", "numpy==2.2.5", "jfjoch_client==1.0.0rc146", "pyJWT==2.10.1",