Skip to content

Commit

Permalink
Pin numba below 0.50.0, which we know is a breaking change (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-wieser committed Apr 13, 2020
1 parent f1e2677 commit 4a5f47a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ x-clifford-templates:
IPython \
h5py;
conda install -c conda-forge sparse;
conda install -c numba "numba>=0.45.1,!=0.49.0rc1";
conda install -c numba "numba>=0.45.1,!=0.49.0rc1,<0.50.0";
else
pip install IPython;
fi
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
install_requires=[
'numpy',
'scipy',
'numba > 0.46, != 0.49.0rc1',
# 0.50.0 is a breaking API change
'numba > 0.46, != 0.49.0rc1, < 0.50.0',
'h5py',
'sparse',
],
Expand Down

0 comments on commit 4a5f47a

Please sign in to comment.