Skip to content
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

Suggest to install datashader and geoviews from defaults #1130

Merged
merged 1 commit into from
Aug 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hvplot/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ def __init__(
raise ImportError('In order to use geo-related features '
'the geoviews library must be available. '
'It can be installed with:\n conda '
'install -c pyviz geoviews')
'install geoviews')
if self.geo:
if self.kind not in self._geo_types:
param.main.param.warning(
Expand Down Expand Up @@ -1267,7 +1267,7 @@ def method_wrapper(ds, x, y):
raise ImportError('In order to use datashading features '
'the Datashader library must be available. '
'It can be installed with:\n conda '
'install -c pyviz datashader')
'install datashader')

opts = dict(dynamic=self.dynamic)
if self._plot_opts.get('width') is not None:
Expand Down