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
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ If you want to develop Apify Actors in Python, check out the [Apify SDK for Pyth
14
14
15
15
## Installation
16
16
17
-
Requires Python 3.10+
17
+
Requires Python 3.11+
18
18
19
19
You can install the package from its [PyPI listing](https://pypi.org/project/apify-client). To do that, simply run `pip install apify-client` in your terminal.
This page summarizes the breaking changes between Apify Python API Client v2.x and v3.0.
7
+
8
+
## Python version support
9
+
10
+
Support for Python 3.10 has been dropped. The Apify Python API Client v3.x now requires Python 3.11 or later. Make sure your environment is running a compatible version before upgrading.
"""Determines permissions that the Actor requires to run. For more information, see the [Actor permissions documentation](https://docs.apify.com/platform/actors/development/permissions)."""
299
299
300
300
LIMITED_PERMISSIONS='LIMITED_PERMISSIONS'
@@ -527,7 +527,7 @@ class EnvVarResponse(BaseModel):
527
527
data: EnvVar
528
528
529
529
530
-
classWebhookEventType(str, Enum):
530
+
classWebhookEventType(StrEnum):
531
531
"""Type of event that triggers the webhook."""
532
532
533
533
ACTOR_BUILD_ABORTED='ACTOR.BUILD.ABORTED'
@@ -553,7 +553,7 @@ class WebhookCondition(BaseModel):
0 commit comments