The python-crewai template is the only Python template still pinned to Apify SDK v3 after #861.
Why it's blocked
The template's ApifyActorsTool (from crewai-tools) depends on langchain-apify, which pins apify-client < 3.0.0. Apify SDK v4 requires apify-client >= 3.1.0, so the two cannot be resolved together:
apify >= 4.0.0 -> apify-client >= 3.1.0
langchain-apify (all versions) -> apify-client < 3.0.0
Action
Bump python-crewai to apify >= 4.0.0, < 5.0.0 once langchain-apify releases a version compatible with apify-client v3.
Related
✍️ Drafted by Claude Code
The
python-crewaitemplate is the only Python template still pinned to Apify SDK v3 after #861.Why it's blocked
The template's
ApifyActorsTool(fromcrewai-tools) depends onlangchain-apify, which pinsapify-client < 3.0.0. Apify SDK v4 requiresapify-client >= 3.1.0, so the two cannot be resolved together:Action
Bump
python-crewaitoapify >= 4.0.0, < 5.0.0oncelangchain-apifyreleases a version compatible withapify-clientv3.Related
apify-clientv3 support inlangchain-apify.✍️ Drafted by Claude Code