Skip to content

Commit

Permalink
Merge pull request #302 from eric-wieser/fix-numba-ci
Browse files Browse the repository at this point in the history
Do not allow numba to be the broken release-candidate which we are not compatible with.
  • Loading branch information
eric-wieser committed Apr 7, 2020
2 parents 9977aef + 638b74c commit 8473631
Show file tree
Hide file tree
Showing 2 changed files with 2 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";
conda install -c numba "numba>=0.45.1,!=0.49.0rc1";
else
pip install IPython;
fi
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
install_requires=[
'numpy',
'scipy',
'numba > 0.46',
'numba > 0.46, != 0.49.0rc1',
'h5py',
'sparse',
],
Expand Down

0 comments on commit 8473631

Please sign in to comment.