Skip to content

Commit eebdfde

Browse files
committed
replace skimage by scimkit-image in setup (closes #1)
1 parent 7b0be34 commit eebdfde

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

rplanpy/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
major, minor, patch = (0, 1, 0)
1+
major, minor, patch = (0, 1, 1)
22
__version__ = f"{major}.{minor}.{patch}"
33
__author__ = "Unai Saralegui"
44
__email__ = "usaralegui@gmail.com"

rplanpy/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def plot_floorplan_graph(data: data.RplanData, ax=None, title=None,
5252
:type ax: matplotlib.axes._subplots.AxesSubplot
5353
:param title: optional title to add to the plot
5454
:type title: str
55-
:param with_colors: optional, wether to colour nodes by ther class or not, defaults to True
55+
:param with_colors: optional, whether to colour nodes by their class or not, defaults to True
5656
:type with_colors: bool
5757
:return: the plotted axes
5858
:rtype: matplotlib.axes._subplots.AxesSubplot

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
'numpy',
2626
'matplotlib',
2727
'networkx',
28-
'skimage',
28+
'scikit-image',
2929
'scipy'
3030
],
3131
classifiers=[

0 commit comments

Comments
 (0)