-
Notifications
You must be signed in to change notification settings - Fork 0
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
Not all dependencies are included in the setup.py #18
Comments
@HonggeunKim I think that was you. Can you take care of this? |
@jsdillon Yes I think it is me. bokeh is a python package to make an interactive plot for delay spectra. Do I need to add bokeh in 'install_requires' of setup.py or should I do something else? |
We're also getting an import error for |
We should avoid using healpy, it's licensed under the GPL license, which is a copy left license and is not compatible with our licensing policies. The |
@jsdillon I added 'bokeh' and 'multiprocessing' to the 'linstall_requires' list of setup.py file and directly committed it to the master branch |
ok, thanks! |
I'm not sure this should be closed. Healpy is still not listed in the setup.py but is imported at the top of |
@dstorer Looks like its just your code that uses healpy. How hard would it be to change it to astropy-healpix? |
One of our undergrads stumbled on this. In particular
bokeh
is not listed in the setup.py but is imported at the top ofutils.py
. I haven't checked if there are other requirements that are not listed.A side note -- the imports in that file are difficult to read. There are recommended structures for imports, see e.g. https://www.python.org/dev/peps/pep-0008/#imports
The text was updated successfully, but these errors were encountered: