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
matplotlib is not part of the install_requires list in the setup.py file but some imports, e.g.
matplotlib
install_requires
from GPy.models.gp_coregionalized_regression import GPCoregionalizedRegression as CO
import GPy.plotting which imports matplotlib, resulting in errors.
GPy.plotting
This is not something we need to consider asap but for sure something to fix soon.
The text was updated successfully, but these errors were encountered:
GPy
will be adressed under #1080
Sorry, something went wrong.
A few additional observations here.
First, this line forces import of mpl immediately when one imports GPy, and that is probably not a wanted behaviour:
GPy/GPy/__init__.py
Line 16 in aa49220
Second, GPy[plotting] hardcodes a very specific version of mpl that cannot be installed at least on windows:
GPy/setup.py
Line 209 in aa49220
Could be worth addressing too!
MartinBubel
No branches or pull requests
matplotlib
is not part of theinstall_requires
list in the setup.py file but some imports, e.g.import
GPy.plotting
which importsmatplotlib
, resulting in errors.This is not something we need to consider asap but for sure something to fix soon.
The text was updated successfully, but these errors were encountered: