We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are import statements for these in the python code, therefore they should be in requirements.txt
On the other hand, pytest should be in the tests_require clause in setup.py, see here.
tests_require
Version: 1.29.0
The text was updated successfully, but these errors were encountered:
Those aren't requirements for using the meep library itself — they are optional dependencies.
meep
For example IPython is imported in a try block to enable optional features in Jupyter, but the code still works without it:
IPython
try
meep/python/simulation.py
Lines 42 to 44 in b47d9ba
vispy is used in plot3D, so the rest of meep runs fine without it, and only that function will throw an exception if you don't have vispy installed:
vispy
plot3D
meep/python/visualization.py
Lines 1064 to 1065 in b47d9ba
scikit-image doesn't seem to be referenced anywhere in Meep, so I'm not sure what you are referring to?
scikit-image
We don't use setup.py — Meep is built with a Makefile.
setup.py
Makefile
Sorry, something went wrong.
science/meep: Add missing Python dependencies
40ad256
NanoComp/meep#2912
No branches or pull requests
There are import statements for these in the python code, therefore they should be in requirements.txt
On the other hand, pytest should be in the
tests_require
clause in setup.py, see here.Version: 1.29.0
The text was updated successfully, but these errors were encountered: