Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix llvm und OS version
  • Loading branch information
Flippchen committed Aug 25, 2023
commit e02561bd4c7616aaae7f8f76be8035fafe26a9d7
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand All @@ -23,8 +23,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install llvm
run: |
sudo apt-get install llvm-11
LLVM_CONFIG=/usr/bin/llvm-config-11 pip install numba==0.45.0 llvmlite==0.32.1
sudo apt-get install llvm-8
LLVM_CONFIG=/usr/bin/llvm-config-8 pip install numba==0.45.0 llvmlite==0.32.1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down