Skip to content

Allow more recent versions of llvmlite #1433

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
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