Skip to content

Commit

Permalink
initial_partition not required. increase version
Browse files Browse the repository at this point in the history
  • Loading branch information
fandreuz committed Jul 18, 2021
1 parent ff37b26 commit 2e20d59
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bispy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Algorithms(Enum):

def compute_maximum_bisimulation(
graph: nx.DiGraph,
initial_partition,
initial_partition=None,
algorithm=Algorithms.PaigeTarjan,
):
"""Compute the maximum bisimulation of the given graph, possibly using
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Francesco Andreuzzi"

# The full version, including alpha/beta/rc tags
release = "0.2.1"
release = "0.2.2"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setuptools.setup(
name="BisPy",
version="0.2.1",
version="0.2.2",
author="Francesco Andreuzzi",
author_email="[email protected]",
description="A bisimulation library for Python",
Expand Down

0 comments on commit 2e20d59

Please sign in to comment.