-
Notifications
You must be signed in to change notification settings - Fork 34
Open
Labels
Description
Python 3.10 introduced a syntax for pattern matching.
match num:
# pattern 1
case 1:
print("One")
# pattern 2
case 2:
print("Two")
# pattern 3
case 3:
print("Three")
# default pattern
case _:
print("Number not between 1 and 3")We don't really need to support it to support general provenance collection on newer python versions (issue #155), so I'm creating this issue to decouple this feature from the bugs that are preventing us from running noWorkflow on newer versions.
Reactions are currently unavailable