From a97257d43f663a8efa4b9850ca5433c6b48f934d Mon Sep 17 00:00:00 2001 From: Alessandro Berti Date: Fri, 12 Jan 2024 07:31:27 +0100 Subject: [PATCH] docs(pm4py): updating changelog --- CHANGELOG.md | 6 ++++++ pm4py/util/pandas_utils.py | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9152597bf..5f3410d5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,16 @@ ### Changed * ab48f194ed0bbcd864683d313285e0db6a3ae570 * refactoring DECLARE discovery +* ba3dd14250f3b713c495833d1ed16d42efb74c7a + * moved LLM descriptions to separate methods ### Deprecated ### Fixed +* 99efc597545a1f0f717c90303db8ca3825062e63 + * bug fix DECLARE discovery +* 4e3cedf1dfdaa70da1e381930812676afc103b22 + * additional PNGs for POWL visualization ### Removed diff --git a/pm4py/util/pandas_utils.py b/pm4py/util/pandas_utils.py index c783a8da3..ee094d424 100644 --- a/pm4py/util/pandas_utils.py +++ b/pm4py/util/pandas_utils.py @@ -8,7 +8,9 @@ def get_default_dataframe_environment(): if importlib.util.find_spec("cudf"): #import cudf; return cudf - pass + import cudf.pandas + cudf.pandas.install() + import pandas as pd return pd