Skip to content

Commit 2e20d59

Browse files
committed
initial_partition not required. increase version
1 parent ff37b26 commit 2e20d59

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bispy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Algorithms(Enum):
2020

2121
def compute_maximum_bisimulation(
2222
graph: nx.DiGraph,
23-
initial_partition,
23+
initial_partition=None,
2424
algorithm=Algorithms.PaigeTarjan,
2525
):
2626
"""Compute the maximum bisimulation of the given graph, possibly using

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "Francesco Andreuzzi"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "0.2.1"
26+
release = "0.2.2"
2727

2828

2929
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
setuptools.setup(
2626
name="BisPy",
27-
version="0.2.1",
27+
version="0.2.2",
2828
author="Francesco Andreuzzi",
2929
author_email="andreuzzi.francesco@gmail.com",
3030
description="A bisimulation library for Python",

0 commit comments

Comments
 (0)