Skip to content

Commit d682f13

Browse files
committed
fix: cap apify-client<3.0.0 to keep the 2.x API contract
1 parent 8127b19 commit d682f13

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ classifiers = [
2525
]
2626
dependencies = [
2727
"strands-agents>=1.0.0",
28-
"apify-client>=2.5.0",
28+
# Upper bound <3.0.0: apify-client 3.0 (released 2026-05-20) is a major
29+
# rewrite (Run dataclass instead of dict, new ApifyApiError signature,
30+
# renamed timeout kwarg). Migrate in a follow-up.
31+
"apify-client>=2.5.0,<3.0.0",
2932
"rich>=13.0.0",
3033
]
3134

0 commit comments

Comments
 (0)