Skip to content

Commit

Permalink
Merge pull request #43 from IgorTatarnikov/vedo-2023.5.0-compatibility
Browse files Browse the repository at this point in the history
Compatibility with vedo 2023.5.0
  • Loading branch information
alessandrofelder authored Nov 16, 2023
2 parents ce1329c + e4f2517 commit 7df8bef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions morphapi/morphology/morphology.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import neurom as nm
from neurom.core.dataformat import COLS
from vedo import merge
from vedo.colors import colorMap
from vedo.colors import color_map
from vedo.shapes import Sphere
from vedo.shapes import Tube

Expand Down Expand Up @@ -172,7 +172,7 @@ def _parse_mesh_kwargs(self, **kwargs):
if neuron_number is None:
neuron_number = 0

soma_color = colorMap(
soma_color = color_map(
neuron_number, name=cmap, vmin=cmap_lims[0], vmax=cmap_lims[1]
)
apical_dendrites_color = (
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"pyyaml>=5.3",
"retry",
"rich",
"vedo>=2021.0.3",
"vedo>=2023.5.0",
"vtk",
]

Expand Down

0 comments on commit 7df8bef

Please sign in to comment.