From fc42da1cd7b3e27e76cebd9dbba50fa9941348a9 Mon Sep 17 00:00:00 2001 From: Arun Sharma Date: Tue, 7 Apr 2026 17:33:50 -0700 Subject: [PATCH] fix: macosx tests --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 991f2e9..685667c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,10 @@ jobs: - name: Set up runtime run: uv sync --all-extras --all-groups + - name: Fix libomp conflict (macOS) + if: runner.os == 'macOS' + run: cp /opt/homebrew/opt/libomp/lib/libomp.dylib .venv/lib/python${{ matrix.python-version }}/site-packages/torch/lib/libomp.dylib + - name: Run linter run: uv run ruff check .