From 92f3c40058b0cf47c6aa7d3fd8d6b29fd84f55e8 Mon Sep 17 00:00:00 2001 From: Alessandro Berti Date: Sun, 6 Jan 2019 13:21:52 +0100 Subject: [PATCH] Adding missing requirement matplotlib --- pm4py/__init__.py | 2 +- requirements.txt | 3 ++- setup.py | 5 +++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pm4py/__init__.py b/pm4py/__init__.py index ba0e44966..b5051c22d 100644 --- a/pm4py/__init__.py +++ b/pm4py/__init__.py @@ -1,3 +1,3 @@ from pm4py import algo, evaluation, objects, util, visualization, statistics -__version__ = "1.0.2" +__version__ = "1.0.3" diff --git a/requirements.txt b/requirements.txt index a1099fcc3..6ccd7efe2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,4 +8,5 @@ lxml graphviz pandas networkx==1.11 -scipy \ No newline at end of file +scipy +matplotlib diff --git a/setup.py b/setup.py index 1e6ebf876..a5173c9e3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='pm4py', - version='1.0.2', + version='1.0.3', packages=['pm4py', 'pm4py.algo', 'pm4py.algo.other', 'pm4py.algo.other.simple', 'pm4py.algo.other.simple.model', 'pm4py.algo.other.simple.model.pandas', 'pm4py.algo.other.simple.model.pandas.versions', 'pm4py.algo.other.simple.model.tracelog', 'pm4py.algo.other.simple.model.tracelog.versions', @@ -70,6 +70,7 @@ 'graphviz', 'pandas', 'networkx==1.11', - 'scipy' + 'scipy', + 'matplotlib' ] )