Skip to content

Commit c76516b

Browse files
authored
Merge pull request #1431 from commial/python310
CI: add support for Python 3.10
2 parents dc3b108 + 45f6d83 commit c76516b

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ['2.7', '3.6', '3.8']
10+
python-version: ['2.7', '3.6', '3.8', '3.10']
1111

1212
steps:
1313

@@ -25,12 +25,15 @@ jobs:
2525
- name: Install requirements
2626
run: pip install -r requirements.txt
2727

28+
- name: Install llvm 8 (llvmlite compatible)
29+
run: sudo apt-get install llvm-8
30+
31+
- name: Use llvm 8
32+
run: sudo update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-8 1
33+
2834
- name: Install optional requirements
2935
run: pip install -r optional_requirements.txt
3036

31-
- name: Install llvm
32-
run: sudo apt-get install llvm
33-
3437
- name: Install Miasm
3538
uses: ./.github/actions/install
3639

0 commit comments

Comments
 (0)