From add4294876d4feb12d08d054f6ab928da4113014 Mon Sep 17 00:00:00 2001 From: xadupre Date: Thu, 3 Oct 2024 10:36:35 +0200 Subject: [PATCH] fix ci on macos Signed-off-by: xadupre --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6315a2d5..8f59e670 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,6 +64,11 @@ jobs: with: python-version: ${{ matrix.python_version }} + - name: install libomp + if: matrix.os == 'macos-latest' + run: | + brew install libomp + - name: Install requirements run: python -m pip install -r requirements.txt