-
Notifications
You must be signed in to change notification settings - Fork 21
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
numba version issue #7
Comments
Yes indeed, RDKit isn't specified as a dependency in I'm aware of the deprecation warning by Numba. It's a warning because in the future some Numba internals will change. My code should work with the old as well as the upcoming new Numba functionality without needing to be changed, so for the time being that warning can be safely ignored. I'll make a note of it in the README as well to avoid any confusion. Be sure to let me know if you have any further comments or feature requests. |
Ok, thanks a lot - no feature requests for now! ;) |
Addresses [spectrum_utils/#7](bittremieux/spectrum_utils#7).
Hello,
I am currently playing around with the toolbox and its visualization capabilities - thank you!
I ran into a few smaller issues and wanted to report them here:
I installed spectrum_utils from git:
pip install git+https://github.com/bittremieux/spectrum_utils
One issue was that the rdkit dependency was missing:
conda install -c conda-forge rdkit
I ran into another issue regarding numba version 0.45.1 (due to the deprication of the "reflection list"):
I "fixed" it by installing the numba version 0.42.1
pip install numba==0.42.1
The text was updated successfully, but these errors were encountered: