I assume it's failing in python 3.5+ when they added the async keyword.
from argo.workflows.client import V1alpha1Api
Traceback (most recent call last):
File "<redacted>/lib/python3.7/site-packages/argo/workflows/__init__.py", line 3, in <module>
from argo.workflows import client
File "<redacted>/lib/python3.7/site-packages/argo/workflows/client/__init__.py", line 19, in <module>
from argo.workflows.client.api.v1alpha1_api import V1alpha1Api
File "<redacted>/lib/python3.7/site-packages/argo/workflows/client/api/__init__.py", line 6, in <module>
from argo.workflows.client.api.v1alpha1_api import V1alpha1Api
File "<redacted>/lib/python3.7/site-packages/argo/workflows/client/api/v1alpha1_api.py", line 134
async=params.get('async'),
^
SyntaxError: invalid syntax
I assume it's failing in python 3.5+ when they added the async keyword.