Skip to content

Commit b4162bb

Browse files
Merge remote-tracking branch 'upstream/hotfixes' into release
2 parents 10c5efb + 39da568 commit b4162bb

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/readme_example.png

317 KB
Loading

pm4py/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
Contact: info@processintelligence.solutions
2121
'''
2222
__name__ = "pm4py"
23-
VERSION = "2.7.20.1"
23+
VERSION = "2.7.20.2"
2424

2525
__version__ = VERSION
2626
__doc__ = "Process mining for Python"

pm4py/read.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -481,8 +481,8 @@ def read_ocel2_json(
481481
from pm4py.objects.ocel.importer.jsonocel import importer as jsonocel_importer
482482

483483
variant = jsonocel_importer.Variants.OCEL20_STANDARD
484-
if get_rustxes_backend_name() is not None:
485-
variant = jsonocel_importer.Variants.OCEL20_RUSTXES
484+
#if get_rustxes_backend_name() is not None:
485+
# variant = jsonocel_importer.Variants.OCEL20_RUSTXES
486486

487487
return jsonocel_importer.apply(
488488
file_path, variant=variant, parameters={"encoding": encoding}
@@ -537,8 +537,8 @@ def read_ocel2_xml(
537537
from pm4py.objects.ocel.importer.xmlocel import importer as xml_importer
538538

539539
variant = xml_importer.Variants.OCEL20
540-
if get_rustxes_backend_name() is not None:
541-
variant = xml_importer.Variants.OCEL20_RUSTXES
540+
#if get_rustxes_backend_name() is not None:
541+
# variant = xml_importer.Variants.OCEL20_RUSTXES
542542

543543
return xml_importer.apply(
544544
file_path, variant=variant, parameters={"encoding": encoding}

0 commit comments

Comments
 (0)