From 6db161465b8f12bbc0f149a9c71ab286b15338eb Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 9 May 2025 02:21:20 +0000 Subject: [PATCH] Update GitHub Actions workflow to handle Python 3.13 dependencies Co-Authored-By: Joe Moura --- .github/workflows/tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ea69d01d0..b99cccdfe 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,7 +28,12 @@ jobs: run: uv python install ${{ matrix.python-version }} - name: Install the project + if: matrix.python-version != '3.13' run: uv sync --dev --all-extras + - name: Install the project (Python 3.13) + if: matrix.python-version == '3.13' + run: uv sync --dev # Skip all-extras for Python 3.13 due to onnxruntime compatibility + - name: Run tests run: uv run pytest --block-network --timeout=60 -vv