Skip to content

Commit

Permalink
fixed pyparsing requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
Stoffle committed Dec 17, 2020
1 parent ab21438 commit 7643609
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion baynet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from typing import Any
from baynet.structure import DAG

__version__ = "0.2.0"
__version__ = "0.2.1"

class Graph(DAG):
"""Temporary thin wrapper to preserve old API."""
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def run(self) -> None:
setup(
cmdclass={"install": CustomInstallCommand, "develop": CustomDevelopCommand},
name="BayNet",
version="0.2.0",
version="0.2.1",
author="Chris Robinson",
author_email="c.f.robinson@sussex.ac.uk",
description="(another) Python Bayesian Network library",
Expand All @@ -59,6 +59,7 @@ def run(self) -> None:
"pandas >= 0.25",
"protobuf",
"graphviz",
"pyparsing"
],
extras_require={
"dev": [
Expand Down

0 comments on commit 7643609

Please sign in to comment.