Skip to content

Commit df540bf

Browse files
Merge remote-tracking branch 'upstream/release' into release
2 parents f3b9f74 + bebba08 commit df540bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pm4py/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
else:
5656
logging.error("intervaltree is not available. This can lead some features of PM4Py to not work correctly!")
5757

58-
__version__ = '2.0.1'
58+
__version__ = '2.0.1.1'
5959
__doc__ = "Process Mining for Python (PM4Py)"
6060
__author__ = 'Fraunhofer Institute for Applied Technology'
6161
__author_email__ = 'pm4py@fit.fraunhofer.de'
@@ -78,8 +78,8 @@
7878
from pm4py.stats import get_start_activities, get_end_activities, get_attributes, get_attribute_values, get_variants, \
7979
get_trace_attributes
8080

81-
# this package is available only for Python >= 3.5
82-
if sys.version_info >= (3, 5):
81+
# this package is available only for Python >= 3.7
82+
if sys.version_info >= (3, 7):
8383
from pm4py import streaming
8484

8585
if pkgutil.find_loader("sympy"):

0 commit comments

Comments
 (0)