The Vercel dashboard shows the message:
Upgrade to Workflow SDK >=4.2.0 to view logs
…on workflow runs. This version gate appears to be tied to the JavaScript @vercel/workflow package (4.x line) and does not recognize the Python
vercel SDK, whose latest release on PyPI is 0.5.8.
As a result, Python workflow users have no path to satisfy the gate and cannot view logs from the dashboard.
Environment
- Python SDK:
vercel==0.5.8 (latest on PyPI: https://pypi.org/project/vercel/)
- Constraint in our
pyproject.toml: vercel>=0.5.0,<0.6
- Runtime: Vercel Python Functions + Workflow
Expected
Either:
- The dashboard log viewer recognizes the Python SDK and gates on the equivalent Python release, or
- The Python SDK ships a release whose version satisfies the JS-side gate, or
- The gate message documents which Python SDK version (if any) is required.
Actual
No Python SDK version satisfies >=4.2.0, so the log viewer is unreachable for Python workflow users.
The Vercel dashboard shows the message:
…on workflow runs. This version gate appears to be tied to the JavaScript
@vercel/workflowpackage (4.x line) and does not recognize the PythonvercelSDK, whose latest release on PyPI is 0.5.8.As a result, Python workflow users have no path to satisfy the gate and cannot view logs from the dashboard.
Environment
vercel==0.5.8(latest on PyPI: https://pypi.org/project/vercel/)pyproject.toml:vercel>=0.5.0,<0.6Expected
Either:
Actual
No Python SDK version satisfies
>=4.2.0, so the log viewer is unreachable for Python workflow users.