Skip to content

Commit

Permalink
chore: restrict llvmlite version for Python 2.7/3.5 compatibility (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
plamut authored Apr 20, 2020
1 parent 6e1e0ec commit c16438f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,14 @@
"pyarrow>=0.4.1, != 0.14.0"
],
"tqdm": ["tqdm >= 4.0.0, <5.0.0dev"],
"fastparquet": ["fastparquet", "python-snappy"],
"fastparquet": [
"fastparquet",
"python-snappy",
# llvmlite >= 0.32.0 cannot be installed on Python 3.5 and below
# (building the wheel fails), thus needs to be restricted.
# See: https://github.com/googleapis/python-bigquery/issues/78
"llvmlite <= 0.31.0",
],
}

all_extras = []
Expand Down

0 comments on commit c16438f

Please sign in to comment.