You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python 3.10 introduced a syntax for pattern matching.
matchnum:
# pattern 1case1:
print("One")
# pattern 2case2:
print("Two")
# pattern 3case3:
print("Three")
# default patterncase _:
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.
The text was updated successfully, but these errors were encountered:
Python 3.10 introduced a syntax for pattern matching.
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.
The text was updated successfully, but these errors were encountered: