Skip to content

Commit

Permalink
fix: Don't remove ds_version yet (#6417)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro authored Oct 21, 2024
1 parent fbed3fb commit 4b668d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion holoviews/operation/datashader.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@
from ..streams import PointerXY
from .resample import LinkableOperation, ResampleOperation2D

DATASHADER_VERSION = Version(ds.__version__).release
ds_version = Version(ds.__version__) # DEPRECATED: Used by hvplot<=0.11.1
DATASHADER_VERSION = ds_version.release
DATASHADER_GE_0_14_0 = DATASHADER_VERSION >= (0, 14, 0)
DATASHADER_GE_0_15_1 = DATASHADER_VERSION >= (0, 15, 1)
DATASHADER_GE_0_16_0 = DATASHADER_VERSION >= (0, 16, 0)
Expand Down

0 comments on commit 4b668d3

Please sign in to comment.