Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
- name: Update pip
run: pip install pip --upgrade

- name: Update wheel
run: pip install wheel --upgrade

- name: Install requirements
run: pip install -r requirements.txt

Expand Down
8 changes: 7 additions & 1 deletion optional_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
pycparser
z3-solver==4.8.7.0
llvmlite==0.31.0

# llvmlite versions are compatible with a single LLVM version,
# see https://pypi.org/project/llvmlite/
# To install a pre-built binary bundling the correct LLVM version,
# install 'wheel' before 'llvmlite'
llvmlite>=0.31.0

parameterized~=0.8.1