prefect-client 3.1.10__py3-none-any.whl → 3.1.12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- prefect/_experimental/lineage.py +7 -8
- prefect/_experimental/sla/__init__.py +0 -0
- prefect/_experimental/sla/client.py +66 -0
- prefect/_experimental/sla/objects.py +53 -0
- prefect/_internal/_logging.py +15 -3
- prefect/_internal/compatibility/async_dispatch.py +22 -16
- prefect/_internal/compatibility/deprecated.py +42 -18
- prefect/_internal/compatibility/migration.py +2 -2
- prefect/_internal/concurrency/inspection.py +12 -14
- prefect/_internal/concurrency/primitives.py +2 -2
- prefect/_internal/concurrency/services.py +154 -80
- prefect/_internal/concurrency/waiters.py +13 -9
- prefect/_internal/pydantic/annotations/pendulum.py +7 -7
- prefect/_internal/pytz.py +4 -3
- prefect/_internal/retries.py +10 -5
- prefect/_internal/schemas/bases.py +19 -10
- prefect/_internal/schemas/validators.py +227 -388
- prefect/_version.py +3 -3
- prefect/automations.py +236 -30
- prefect/blocks/__init__.py +3 -3
- prefect/blocks/abstract.py +53 -30
- prefect/blocks/core.py +183 -84
- prefect/blocks/notifications.py +133 -73
- prefect/blocks/redis.py +13 -9
- prefect/blocks/system.py +24 -11
- prefect/blocks/webhook.py +7 -5
- prefect/cache_policies.py +3 -2
- prefect/client/orchestration/__init__.py +1957 -0
- prefect/client/orchestration/_artifacts/__init__.py +0 -0
- prefect/client/orchestration/_artifacts/client.py +239 -0
- prefect/client/orchestration/_automations/__init__.py +0 -0
- prefect/client/orchestration/_automations/client.py +329 -0
- prefect/client/orchestration/_blocks_documents/__init__.py +0 -0
- prefect/client/orchestration/_blocks_documents/client.py +334 -0
- prefect/client/orchestration/_blocks_schemas/__init__.py +0 -0
- prefect/client/orchestration/_blocks_schemas/client.py +200 -0
- prefect/client/orchestration/_blocks_types/__init__.py +0 -0
- prefect/client/orchestration/_blocks_types/client.py +380 -0
- prefect/client/orchestration/_concurrency_limits/__init__.py +0 -0
- prefect/client/orchestration/_concurrency_limits/client.py +762 -0
- prefect/client/orchestration/_deployments/__init__.py +0 -0
- prefect/client/orchestration/_deployments/client.py +1128 -0
- prefect/client/orchestration/_flow_runs/__init__.py +0 -0
- prefect/client/orchestration/_flow_runs/client.py +903 -0
- prefect/client/orchestration/_flows/__init__.py +0 -0
- prefect/client/orchestration/_flows/client.py +343 -0
- prefect/client/orchestration/_logs/__init__.py +0 -0
- prefect/client/orchestration/_logs/client.py +97 -0
- prefect/client/orchestration/_variables/__init__.py +0 -0
- prefect/client/orchestration/_variables/client.py +157 -0
- prefect/client/orchestration/base.py +46 -0
- prefect/client/orchestration/routes.py +145 -0
- prefect/client/schemas/__init__.py +68 -28
- prefect/client/schemas/actions.py +2 -2
- prefect/client/schemas/filters.py +5 -0
- prefect/client/schemas/objects.py +8 -15
- prefect/client/schemas/schedules.py +22 -10
- prefect/concurrency/_asyncio.py +87 -0
- prefect/concurrency/{events.py → _events.py} +10 -10
- prefect/concurrency/asyncio.py +20 -104
- prefect/concurrency/context.py +6 -4
- prefect/concurrency/services.py +26 -74
- prefect/concurrency/sync.py +23 -44
- prefect/concurrency/v1/_asyncio.py +63 -0
- prefect/concurrency/v1/{events.py → _events.py} +13 -15
- prefect/concurrency/v1/asyncio.py +27 -80
- prefect/concurrency/v1/context.py +6 -4
- prefect/concurrency/v1/services.py +33 -79
- prefect/concurrency/v1/sync.py +18 -37
- prefect/context.py +66 -45
- prefect/deployments/base.py +10 -144
- prefect/deployments/flow_runs.py +12 -2
- prefect/deployments/runner.py +53 -4
- prefect/deployments/steps/pull.py +13 -0
- prefect/engine.py +17 -4
- prefect/events/clients.py +7 -1
- prefect/events/schemas/events.py +3 -2
- prefect/filesystems.py +6 -2
- prefect/flow_engine.py +101 -85
- prefect/flows.py +10 -1
- prefect/input/run_input.py +2 -1
- prefect/logging/logging.yml +1 -1
- prefect/main.py +1 -3
- prefect/results.py +2 -307
- prefect/runner/runner.py +4 -2
- prefect/runner/storage.py +87 -21
- prefect/serializers.py +32 -25
- prefect/settings/legacy.py +4 -4
- prefect/settings/models/api.py +3 -3
- prefect/settings/models/cli.py +3 -3
- prefect/settings/models/client.py +5 -3
- prefect/settings/models/cloud.py +8 -3
- prefect/settings/models/deployments.py +3 -3
- prefect/settings/models/experiments.py +4 -7
- prefect/settings/models/flows.py +3 -3
- prefect/settings/models/internal.py +4 -2
- prefect/settings/models/logging.py +4 -3
- prefect/settings/models/results.py +3 -3
- prefect/settings/models/root.py +3 -2
- prefect/settings/models/runner.py +4 -4
- prefect/settings/models/server/api.py +3 -3
- prefect/settings/models/server/database.py +11 -4
- prefect/settings/models/server/deployments.py +6 -2
- prefect/settings/models/server/ephemeral.py +4 -2
- prefect/settings/models/server/events.py +3 -2
- prefect/settings/models/server/flow_run_graph.py +6 -2
- prefect/settings/models/server/root.py +3 -3
- prefect/settings/models/server/services.py +26 -11
- prefect/settings/models/server/tasks.py +6 -3
- prefect/settings/models/server/ui.py +3 -3
- prefect/settings/models/tasks.py +5 -5
- prefect/settings/models/testing.py +3 -3
- prefect/settings/models/worker.py +5 -3
- prefect/settings/profiles.py +15 -2
- prefect/states.py +61 -45
- prefect/task_engine.py +54 -75
- prefect/task_runners.py +56 -55
- prefect/task_worker.py +2 -2
- prefect/tasks.py +90 -36
- prefect/telemetry/bootstrap.py +10 -9
- prefect/telemetry/run_telemetry.py +13 -8
- prefect/telemetry/services.py +4 -0
- prefect/transactions.py +4 -15
- prefect/utilities/_git.py +34 -0
- prefect/utilities/asyncutils.py +1 -1
- prefect/utilities/engine.py +3 -19
- prefect/utilities/generics.py +18 -0
- prefect/utilities/templating.py +25 -1
- prefect/workers/base.py +6 -3
- prefect/workers/process.py +1 -1
- {prefect_client-3.1.10.dist-info → prefect_client-3.1.12.dist-info}/METADATA +2 -2
- {prefect_client-3.1.10.dist-info → prefect_client-3.1.12.dist-info}/RECORD +135 -109
- prefect/client/orchestration.py +0 -4523
- prefect/records/__init__.py +0 -1
- prefect/records/base.py +0 -235
- prefect/records/filesystem.py +0 -213
- prefect/records/memory.py +0 -184
- prefect/records/result_store.py +0 -70
- {prefect_client-3.1.10.dist-info → prefect_client-3.1.12.dist-info}/LICENSE +0 -0
- {prefect_client-3.1.10.dist-info → prefect_client-3.1.12.dist-info}/WHEEL +0 -0
- {prefect_client-3.1.10.dist-info → prefect_client-3.1.12.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: prefect-client
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.12
|
4
4
|
Summary: Workflow orchestration and management.
|
5
5
|
Home-page: https://www.prefect.io
|
6
6
|
Author: Prefect Technologies, Inc.
|
@@ -29,7 +29,7 @@ Requires-Dist: asgi-lifespan<3.0,>=1.0
|
|
29
29
|
Requires-Dist: cachetools<6.0,>=5.3
|
30
30
|
Requires-Dist: cloudpickle<4.0,>=2.0
|
31
31
|
Requires-Dist: coolname<3.0.0,>=1.0.4
|
32
|
-
Requires-Dist: croniter<
|
32
|
+
Requires-Dist: croniter<7.0.0,>=1.0.12
|
33
33
|
Requires-Dist: exceptiongroup>=1.0.0
|
34
34
|
Requires-Dist: fastapi<1.0.0,>=0.111.0
|
35
35
|
Requires-Dist: fsspec>=2022.5.0
|
@@ -1,116 +1,145 @@
|
|
1
1
|
prefect/.prefectignore,sha256=awSprvKT0vI8a64mEOLrMxhxqcO-b0ERQeYpA2rNKVQ,390
|
2
2
|
prefect/__init__.py,sha256=FmdMSNpGH8Mrkn5X0mNZup8_SHdeB_aqEmS5taeOHAQ,3530
|
3
|
-
prefect/_version.py,sha256=
|
3
|
+
prefect/_version.py,sha256=zuGgNXMjmgXw6PUf00XBNWd_1SsAVoLZRuw54uMpFUA,497
|
4
4
|
prefect/agent.py,sha256=qyyUMdiv5ndUIk-O8uwamESJGXXDQ_BmhKiLlm31ue0,286
|
5
5
|
prefect/artifacts.py,sha256=c_hMYTQoKFij8_tahtBeHzjYl7ztXAU90QP_6SuMw9A,12934
|
6
|
-
prefect/automations.py,sha256=
|
7
|
-
prefect/cache_policies.py,sha256=
|
8
|
-
prefect/context.py,sha256=
|
9
|
-
prefect/engine.py,sha256=
|
6
|
+
prefect/automations.py,sha256=Y7HNtBTKnvmgPblEkxTWSWRy6qA9DScZSQblozx5Clg,12591
|
7
|
+
prefect/cache_policies.py,sha256=YAkAKDOEs9dlkOz8sHzGJadFXj445cTK0SlQhoN3HGs,9954
|
8
|
+
prefect/context.py,sha256=A2kY-jwnUeFmFVKv2RyccXyeG3eKjIajLmPURZ9hk1s,23192
|
9
|
+
prefect/engine.py,sha256=gRJqELKLH_4DxaZcnz5IQ2irT_bES7rGC_l5OQ5wado,2415
|
10
10
|
prefect/exceptions.py,sha256=sbphPKQ4yOBUa9w0MsSFoDj_uC8Tlv9WHTjzO3cQKq8,11593
|
11
|
-
prefect/filesystems.py,sha256=
|
12
|
-
prefect/flow_engine.py,sha256=
|
11
|
+
prefect/filesystems.py,sha256=eHmJ1tG6IXZy9ytgneu9DlTHWCpwb0e-TVhmX4VjmLk,18024
|
12
|
+
prefect/flow_engine.py,sha256=udK5ND3vzAQVu9rEYHV2MOWreA2m9f1LT2e6yB7rNj0,53904
|
13
13
|
prefect/flow_runs.py,sha256=-5udBBYdgdCBCjAMYvELbA1vmrjZ6oREXl-BZdZr6hc,16129
|
14
|
-
prefect/flows.py,sha256=
|
14
|
+
prefect/flows.py,sha256=BCCu_HqljYB2r8WJBmcpp7-y1FQnBnch5b0HyIjpti8,94746
|
15
15
|
prefect/futures.py,sha256=ZtQiRJddO5-LNabUZiX_2wEJnRf6w7qZ8KRC5VUNOa0,16915
|
16
|
-
prefect/main.py,sha256=
|
16
|
+
prefect/main.py,sha256=F4lBcS-Ck2Bx0R8g4al6cdOSXtwFHDkWCok8AxQXaeg,2315
|
17
17
|
prefect/plugins.py,sha256=FPRLR2mWVBMuOnlzeiTD9krlHONZH2rtYLD753JQDNQ,2516
|
18
18
|
prefect/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
-
prefect/results.py,sha256=
|
20
|
-
prefect/serializers.py,sha256=
|
21
|
-
prefect/states.py,sha256=
|
22
|
-
prefect/task_engine.py,sha256=
|
23
|
-
prefect/task_runners.py,sha256=
|
19
|
+
prefect/results.py,sha256=FqZxiSKQdcfrhVhXjwggcTiEaQKVl63rYEYwiuTFMY8,40399
|
20
|
+
prefect/serializers.py,sha256=U2P6UXvC12mqVFWtRjeRO-36NjRDli8jdcn3uWEhkVU,9237
|
21
|
+
prefect/states.py,sha256=NclYofTvjaDigPnuNLlcTnMkbqJZHiH5JhmiiPELCFw,25686
|
22
|
+
prefect/task_engine.py,sha256=nFYbwfyI8l_vnJWi_GN8N_uXceq24v2HXpouf6KPiH8,59984
|
23
|
+
prefect/task_runners.py,sha256=GvdexOJgzbHAAu2u_3CaDS19HgtZcYukiJ8I1UHdecQ,15563
|
24
24
|
prefect/task_runs.py,sha256=jkaQOkRKOHS8fgHUijteriFpjMSKv4zldn1D8tZHkUI,8777
|
25
|
-
prefect/task_worker.py,sha256=
|
26
|
-
prefect/tasks.py,sha256=
|
27
|
-
prefect/transactions.py,sha256=
|
25
|
+
prefect/task_worker.py,sha256=6vEcEuNRg1DgMXbzokdAMUP_978aa6W5sl0guHO3r-w,17662
|
26
|
+
prefect/tasks.py,sha256=OS4-uuH399e4fYfYASdAZcMAjOU5zpV_LQ5PMLvxAlo,72230
|
27
|
+
prefect/transactions.py,sha256=CxwaLixlg4lbR_CmwCtnnQ1506B2q9h04ApFmDnl_Yk,16044
|
28
28
|
prefect/variables.py,sha256=dCK3vX7TbkqXZhnNT_v7rcGh3ISRqoR6pJVLpoll3Js,8342
|
29
29
|
prefect/_experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
-
prefect/_experimental/lineage.py,sha256=
|
30
|
+
prefect/_experimental/lineage.py,sha256=2zI6fFUc3wPa3n50agugqV0Hlc5zgmZFTijU0yY6BKE,6633
|
31
|
+
prefect/_experimental/sla/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
|
+
prefect/_experimental/sla/client.py,sha256=shxTlSYtP6BijQFuD7L-IiwKhhCFnqg17TahPStZQCY,1895
|
33
|
+
prefect/_experimental/sla/objects.py,sha256=8x-3-xiMf2jLURjKjQUHqADrScsfBDDzmtieXNjUnX4,1574
|
31
34
|
prefect/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
|
-
prefect/_internal/_logging.py,sha256=
|
35
|
+
prefect/_internal/_logging.py,sha256=Igy2tCM2Hv9wNiDPcee0s5N1fTc6oRP7OffCJBqAekY,1124
|
33
36
|
prefect/_internal/integrations.py,sha256=U4cZMDbnilzZSKaMxvzZcSL27a1tzRMjDoTfr2ul_eY,231
|
34
|
-
prefect/_internal/pytz.py,sha256=
|
35
|
-
prefect/_internal/retries.py,sha256=
|
37
|
+
prefect/_internal/pytz.py,sha256=Sy_cD-Hkmo_Yrhx2Jucy7DgTRhvO8ZD0whW1ywbSg_U,13765
|
38
|
+
prefect/_internal/retries.py,sha256=nJ3x_FuCs0VbBulGOWigtUNHr3Hn0sgRmHtxcncinLE,2858
|
36
39
|
prefect/_internal/compatibility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
-
prefect/_internal/compatibility/async_dispatch.py,sha256=
|
38
|
-
prefect/_internal/compatibility/deprecated.py,sha256=
|
39
|
-
prefect/_internal/compatibility/migration.py,sha256=
|
40
|
+
prefect/_internal/compatibility/async_dispatch.py,sha256=cUXOqSeseMUaje9oYUzasVPtNttyiHvrqfJl0zK66XI,2949
|
41
|
+
prefect/_internal/compatibility/deprecated.py,sha256=ClqvyXDre71EjeNHlXUIpvmlVhliPiR0LDlH2niKv5w,8647
|
42
|
+
prefect/_internal/compatibility/migration.py,sha256=QUkBauToZBJIGtg5MULXHbLXXY9xS14YdJ4K5QuG8xM,6801
|
40
43
|
prefect/_internal/concurrency/__init__.py,sha256=YlTwU9ryjPNwbJa45adLJY00t_DGCh1QrdtY9WdVFfw,2140
|
41
44
|
prefect/_internal/concurrency/api.py,sha256=9MuQ0icQVTxwxChujn9mnv0WXRqwToysQy9GWC3sJRg,7352
|
42
45
|
prefect/_internal/concurrency/calls.py,sha256=4t8ACj93jUkvfleQIkbxFJIsJaa5Dn6-SBOYiwe8qBg,16479
|
43
46
|
prefect/_internal/concurrency/cancellation.py,sha256=5pVR65GfVlzI4-h7R_uAPPgRFlwxAuhsF1-SGD3EZTQ,18683
|
44
47
|
prefect/_internal/concurrency/event_loop.py,sha256=N6SyBV0vaSF5HD4_JM8zL7oBGd2nMuEKkeSPnBZdHw4,2136
|
45
|
-
prefect/_internal/concurrency/inspection.py,sha256=
|
46
|
-
prefect/_internal/concurrency/primitives.py,sha256=
|
47
|
-
prefect/_internal/concurrency/services.py,sha256=
|
48
|
+
prefect/_internal/concurrency/inspection.py,sha256=wUWVbHi4G-BxuuYFWhTNmo5yc1C651lQrp5OMiHPU1E,3545
|
49
|
+
prefect/_internal/concurrency/primitives.py,sha256=Wuht4GwJCgts_uAZFUt9c-InPssnXcelRQc1dGdOplk,2672
|
50
|
+
prefect/_internal/concurrency/services.py,sha256=8K77DC67Km3sjgZaXC_Rdz2nTbW908NeHMGjmorcwf0,15915
|
48
51
|
prefect/_internal/concurrency/threads.py,sha256=pe-ill3xaXejpCwWLkak9e1hQB5wEuwZ_-0aQDMEDBM,9153
|
49
|
-
prefect/_internal/concurrency/waiters.py,sha256=
|
52
|
+
prefect/_internal/concurrency/waiters.py,sha256=mhXpQk8swcUAxBk7f7kGn1fqy44XcFyneog_zEYecr0,9442
|
50
53
|
prefect/_internal/pydantic/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
51
54
|
prefect/_internal/pydantic/schemas.py,sha256=tsRKq5yEIgiRbWMl3BPnbfNaKyDN6pq8WSs0M8SQMm4,452
|
52
55
|
prefect/_internal/pydantic/v1_schema.py,sha256=wSyQr3LUbIh0R9LsZ6ItmLnQeAS8dxVMNpIb-4aPvjM,1175
|
53
56
|
prefect/_internal/pydantic/v2_schema.py,sha256=wNVbwnqQC3uGJqUmNoQOpQE27sZLY6kZo0cUlZAtgR0,3724
|
54
57
|
prefect/_internal/pydantic/v2_validated_func.py,sha256=Ld8OtPFF7Ci-gHHmKhSMizBxzuIBOQ6kuIFNRh0vRVY,3731
|
55
58
|
prefect/_internal/pydantic/annotations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
|
-
prefect/_internal/pydantic/annotations/pendulum.py,sha256=
|
59
|
+
prefect/_internal/pydantic/annotations/pendulum.py,sha256=KTh6w32-S9MXHywwNod9aA7v-VN7a3AWiSZh4vDRkx0,2683
|
57
60
|
prefect/_internal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
|
-
prefect/_internal/schemas/bases.py,sha256=
|
61
|
+
prefect/_internal/schemas/bases.py,sha256=bCffqV_9jBAwrqmBUrqrdaTHn43yQRcEca2igObURq0,4704
|
59
62
|
prefect/_internal/schemas/fields.py,sha256=m4LrFNz8rA9uBhMk9VyQT6FIXmV_EVAW92hdXeSvHbY,837
|
60
63
|
prefect/_internal/schemas/serializers.py,sha256=G_RGHfObjisUiRvd29p-zc6W4bwt5rE1OdR6TXNrRhQ,825
|
61
|
-
prefect/_internal/schemas/validators.py,sha256=
|
62
|
-
prefect/blocks/__init__.py,sha256=
|
63
|
-
prefect/blocks/abstract.py,sha256=
|
64
|
-
prefect/blocks/core.py,sha256=
|
64
|
+
prefect/_internal/schemas/validators.py,sha256=7OFvPhdLwZJrC1pD0iMZIB-7QZclKvl-Lpe83-Ucs8Q,19530
|
65
|
+
prefect/blocks/__init__.py,sha256=D0hB72qMfgqnBB2EMZRxUxlX9yLfkab5zDChOwJZmkY,220
|
66
|
+
prefect/blocks/abstract.py,sha256=fn0Tag4dpsaHs7aanneQpnFF7mb3Bgneb8hVgYhhE_U,16907
|
67
|
+
prefect/blocks/core.py,sha256=WVP2cSDBfZl_8K_WObepGzYQlww74dxU0o7SAfx2Rh8,62186
|
65
68
|
prefect/blocks/fields.py,sha256=1m507VVmkpOnMF_7N-qboRjtw4_ceIuDneX3jZ3Jm54,63
|
66
|
-
prefect/blocks/notifications.py,sha256=
|
67
|
-
prefect/blocks/redis.py,sha256=
|
68
|
-
prefect/blocks/system.py,sha256=
|
69
|
-
prefect/blocks/webhook.py,sha256=
|
69
|
+
prefect/blocks/notifications.py,sha256=h4uYC3UyaWHNCwvVOX0RXRbRwO8HEWT1lTH6MHMFQLA,33970
|
70
|
+
prefect/blocks/redis.py,sha256=lt_f1SIcS5OVvthCY6KRWiy5DyUZNRlHqkKhKF25P8c,5770
|
71
|
+
prefect/blocks/system.py,sha256=wris9Tf0Jpnz7uyAokPvqsQKeZBq_Q4-joCoLkgf6kI,4951
|
72
|
+
prefect/blocks/webhook.py,sha256=hRpMGamOpS2HSM0iPU2ylVGnDWtWUPo6sIU3O24lIa0,2558
|
70
73
|
prefect/client/__init__.py,sha256=bDeOC_I8_la5dwCAfxKzYSTSAr2tlq5HpxJgVoCCdAs,675
|
71
74
|
prefect/client/base.py,sha256=KJg-RapWjjJp64I-k7s3AlN3rXZQRVz2tYOoAQ6qdTU,25547
|
72
75
|
prefect/client/cloud.py,sha256=nw3eVQXVCLD5DU8a-7rpBYHDnBD1v3B0GZ3tu9aNT70,6546
|
73
76
|
prefect/client/collections.py,sha256=OdgJrUssGtuD0tHIYhtBamEN5q4oA6Uv4ZX-QueW7LI,1074
|
74
77
|
prefect/client/constants.py,sha256=Z_GG8KF70vbbXxpJuqW5pLnwzujTVeHbcYYRikNmGH0,29
|
75
|
-
prefect/client/orchestration.py,sha256=DQBnvgFZ1jbUMfMKcoP6l5mn6lZlT_0FW2DFcP0ahds,159927
|
76
78
|
prefect/client/subscriptions.py,sha256=TZ7Omv8yeQQIkE6EmWYM78e8p7UdvdTDzcQe91dCU4U,3838
|
77
79
|
prefect/client/utilities.py,sha256=oYer87Q79C6V4BXURRHbvsPFt0tiOSFR2lLBzjaNV6w,3463
|
78
|
-
prefect/client/
|
79
|
-
prefect/client/
|
80
|
-
prefect/client/
|
81
|
-
prefect/client/
|
80
|
+
prefect/client/orchestration/__init__.py,sha256=iEHqRrWG-rUlbM22u3nQDvKZUV53zBO1k6yvafMJVCo,67962
|
81
|
+
prefect/client/orchestration/base.py,sha256=UOm9Z9zLlBMSR0vt8S-V08AhTReO3g4brL4cS4hENRM,1331
|
82
|
+
prefect/client/orchestration/routes.py,sha256=JFG1OWUBfrxPKW8Q7XWItlhOrSZ67IOySSoFZ6mxzm0,4364
|
83
|
+
prefect/client/orchestration/_artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
84
|
+
prefect/client/orchestration/_artifacts/client.py,sha256=0GEM4rJWeedKR2xVgWQcX6DpLyn0zKFJF9nfRCQ4tpM,8855
|
85
|
+
prefect/client/orchestration/_automations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
|
+
prefect/client/orchestration/_automations/client.py,sha256=JoD8VJ8zTpxuTMUPPE8SOHro5bdmjjqzBK63UV58_98,10869
|
87
|
+
prefect/client/orchestration/_blocks_documents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
|
+
prefect/client/orchestration/_blocks_documents/client.py,sha256=HTGUIsOkHbe-Vh4hod6oN4VnKNSaOyVuhvToDDGOZ3M,11474
|
89
|
+
prefect/client/orchestration/_blocks_schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
|
+
prefect/client/orchestration/_blocks_schemas/client.py,sha256=-UP2ILgZB2Ib0XykAiR9FiuDlFy_RCTnkJUhiN4sC4I,6424
|
91
|
+
prefect/client/orchestration/_blocks_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
92
|
+
prefect/client/orchestration/_blocks_types/client.py,sha256=alA4xD-yp3mycAbzMyRuLcYcgIv2mugpUoKnVzxiFKc,12599
|
93
|
+
prefect/client/orchestration/_concurrency_limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
94
|
+
prefect/client/orchestration/_concurrency_limits/client.py,sha256=ss73wg8W_dYNTyh8ST6L5DEnLc--PT8yUa4TmPWUuCI,23948
|
95
|
+
prefect/client/orchestration/_deployments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
96
|
+
prefect/client/orchestration/_deployments/client.py,sha256=mplDncofcj55b9BKvL2n8Ds4QdguuSi88ZtXD3XxMqg,40551
|
97
|
+
prefect/client/orchestration/_flow_runs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
|
+
prefect/client/orchestration/_flow_runs/client.py,sha256=zxCnz_lYz1BgCLBhlAEzKw0lAeMkyZ7aE1LxF2134xs,30714
|
99
|
+
prefect/client/orchestration/_flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
100
|
+
prefect/client/orchestration/_flows/client.py,sha256=21rqVFm-AsqFK1S-vK2TyXKZ_oL65SN0_hiiddi6vIo,11006
|
101
|
+
prefect/client/orchestration/_logs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
102
|
+
prefect/client/orchestration/_logs/client.py,sha256=DYgdeVV_6ORIOuqZapDWZXuFjIUtWreAyl2uHWpGZfA,2996
|
103
|
+
prefect/client/orchestration/_variables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
104
|
+
prefect/client/orchestration/_variables/client.py,sha256=wKBbZBLGgs5feDCil-xxKt36dibUEB5Ll62uPtvQGmc,5284
|
105
|
+
prefect/client/schemas/__init__.py,sha256=InZcDzdeWA2oaV0TlyvoMcyLcbi_aaqU1U9D6Gx-eoU,2747
|
106
|
+
prefect/client/schemas/actions.py,sha256=fQetf1zGttPYYxX-GXYzrfboN97uy1ObvfIR3jYx6yg,29890
|
107
|
+
prefect/client/schemas/filters.py,sha256=zaiDkalrIpKjd38V4aP1GHlqD24KTPCZiKtPyX69ZWE,36607
|
108
|
+
prefect/client/schemas/objects.py,sha256=NA3lEiqYV5sEzRUM3IlvXFoxgs9WeHPq9vSxQU5RXBU,57780
|
82
109
|
prefect/client/schemas/responses.py,sha256=iTXTiUhdRL7PxNyJXMZ4ngT7C8SepT_z7g_pnUnVlzo,15629
|
83
|
-
prefect/client/schemas/schedules.py,sha256=
|
110
|
+
prefect/client/schemas/schedules.py,sha256=D1CVaqlnTgtbeUWeUy4m5CeMAuf36JbgxWgt1g9uq1c,14746
|
84
111
|
prefect/client/schemas/sorting.py,sha256=L-2Mx-igZPtsUoRUguTcG3nIEstMEMPD97NwPM2Ox5s,2579
|
85
112
|
prefect/client/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
113
|
prefect/client/types/flexible_schedule_list.py,sha256=WjIiy-yZuA_k1iCMCrmZBW24JNNHYPDRkg3TOhlJGhw,370
|
87
114
|
prefect/concurrency/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
|
-
prefect/concurrency/
|
89
|
-
prefect/concurrency/
|
90
|
-
prefect/concurrency/
|
91
|
-
prefect/concurrency/
|
92
|
-
prefect/concurrency/
|
115
|
+
prefect/concurrency/_asyncio.py,sha256=XfiKES0DOEfjHdjQ43NNWH6kdTt6a2Oj_PzxQ8sZ8IY,3004
|
116
|
+
prefect/concurrency/_events.py,sha256=KWHDldCWE3b5AH9eZ7kfmajvp36lRFCjCXIEx77jtKk,1825
|
117
|
+
prefect/concurrency/asyncio.py,sha256=T4Ut_rIoxzigHY740wbzH1UIqT5kQv2ZvqMfv0bNctc,4680
|
118
|
+
prefect/concurrency/context.py,sha256=8ZXs3G7NOF5Q2NqydK-K3zfjmYNnmfer-25hH6r6MgA,1009
|
119
|
+
prefect/concurrency/services.py,sha256=9db7VgASPLpDB8apEcmr4te75eyaXnycry8N4OhNAB8,2415
|
120
|
+
prefect/concurrency/sync.py,sha256=f4JQGR5_yVsZHdg_CGGbvpynmpxmTc1gqwc_xynyGJ8,4928
|
93
121
|
prefect/concurrency/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
94
|
-
prefect/concurrency/v1/
|
95
|
-
prefect/concurrency/v1/
|
96
|
-
prefect/concurrency/v1/
|
97
|
-
prefect/concurrency/v1/
|
98
|
-
prefect/concurrency/v1/
|
122
|
+
prefect/concurrency/v1/_asyncio.py,sha256=UTFjkOPevvbazzpf-O6sSixwM0gs_GzK5zwH4EG4FJ8,2152
|
123
|
+
prefect/concurrency/v1/_events.py,sha256=eoNmtlt__EqhgImWyxfq_MxwTRqNznJU9-3sKwThc98,1863
|
124
|
+
prefect/concurrency/v1/asyncio.py,sha256=GcdrqEye97qCjqWnEx2DIu38Zls5Mf2w0ofVpwtDriM,3168
|
125
|
+
prefect/concurrency/v1/context.py,sha256=BhK63TYp9BQYRCgTI1onUPXmgBoYaP7o27U695lH7qk,1107
|
126
|
+
prefect/concurrency/v1/services.py,sha256=ppVCllzb2qeKc-xntobFu45dEh3J-ZTtLDPuHr1djxo,2958
|
127
|
+
prefect/concurrency/v1/sync.py,sha256=C5uPmW2pWdt3bu1KVQkYf_IscjSzY_VhgR9AZJkkIa8,2106
|
99
128
|
prefect/deployments/__init__.py,sha256=_wb7NxDKhq11z9MjYsPckmT3o6MRhGLRgCV9TmvYtew,1002
|
100
|
-
prefect/deployments/base.py,sha256=
|
129
|
+
prefect/deployments/base.py,sha256=LS0m6u5z2iq0YikLumdtkR4oB755KpxmWepew1o_PhA,11635
|
101
130
|
prefect/deployments/deployments.py,sha256=K3Rgnpjxo_T8I8LMwlq24OKqZiZBTE8-YnPg-YGUStM,171
|
102
|
-
prefect/deployments/flow_runs.py,sha256=
|
103
|
-
prefect/deployments/runner.py,sha256=
|
131
|
+
prefect/deployments/flow_runs.py,sha256=2acoqRqlj8dwluUsgB8mbaJk36tEAEai2_Nf-kua78U,7147
|
132
|
+
prefect/deployments/runner.py,sha256=VceiUiNzdTcTMQat1uuZhfDikvbldbrKE8dSC2ZZMcc,45005
|
104
133
|
prefect/deployments/schedules.py,sha256=qFzYxPUYz8mYRPxG4dOXZC-6tdVprbK5Zw1fwBf42xI,1910
|
105
134
|
prefect/deployments/steps/__init__.py,sha256=Dlz9VqMRyG1Gal8dj8vfGpPr0LyQhZdvcciozkK8WoY,206
|
106
135
|
prefect/deployments/steps/core.py,sha256=8V_xrYfpF_LqX_uIvWMV_Fnx_EcO9ryVNZaL6peQdao,6882
|
107
|
-
prefect/deployments/steps/pull.py,sha256=
|
136
|
+
prefect/deployments/steps/pull.py,sha256=ArAg2vDl7zzG72DmMV-U8F6fHe43iZ0qr0s1i4UqMeU,9669
|
108
137
|
prefect/deployments/steps/utility.py,sha256=s5mMBmHVCS1ZRBRUCunwPueU_7Dii_GK6CqCoznwUCc,8134
|
109
138
|
prefect/docker/__init__.py,sha256=z6wdc6UFfiBG2jb9Jk64uCWVM04JKVWeVyDWwuuon8M,527
|
110
139
|
prefect/docker/docker_image.py,sha256=Y84_ooCYA9NGl6FElJul9-FaW3teT-eia2SiNtZ1LG8,2999
|
111
140
|
prefect/events/__init__.py,sha256=GtKl2bE--pJduTxelH2xy7SadlLJmmis8WR1EYixhuA,2094
|
112
141
|
prefect/events/actions.py,sha256=A7jS8bo4zWGnrt3QfSoQs0uYC1xfKXio3IfU0XtTb5s,9129
|
113
|
-
prefect/events/clients.py,sha256=
|
142
|
+
prefect/events/clients.py,sha256=OeEK2BLfXNegscubz3SS9b_GlbGg2mFgcpQpFLWihL8,24864
|
114
143
|
prefect/events/filters.py,sha256=G1bkshD8mtVijIiHZ1lhyB_spGNXn1glZ8FmXCQIeuE,8056
|
115
144
|
prefect/events/related.py,sha256=A-1SVYwHtsxaDurRepnTsYbTWRBJSbtL5O_KffLaTwU,6534
|
116
145
|
prefect/events/utilities.py,sha256=gaJEC5mMK9XsCt8wbWzuFhZTRyYYmfnMoR-S4s79zg4,2648
|
@@ -120,7 +149,7 @@ prefect/events/cli/automations.py,sha256=WIZ3-EcDibjQB5BrMEx7OZ7UfOqP8VjCI1dNh64
|
|
120
149
|
prefect/events/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
121
150
|
prefect/events/schemas/automations.py,sha256=LHpZvI-5triEtgYsdEjADfEtgkpZgqzt3rsTG7QyOoo,14420
|
122
151
|
prefect/events/schemas/deployment_triggers.py,sha256=OX9g9eHe0nqJ3PtVEzqs9Ub2LaOHMA4afLZSvSukKGU,3191
|
123
|
-
prefect/events/schemas/events.py,sha256=
|
152
|
+
prefect/events/schemas/events.py,sha256=5vp6U3P2K7eNRnKy6eBlHKeSVZH6nzNuRyV2Q66_M8U,9101
|
124
153
|
prefect/events/schemas/labelling.py,sha256=bU-XYaHXhI2MEBIHngth96R9D02m8HHb85KNcHZ_1Gc,3073
|
125
154
|
prefect/infrastructure/__init__.py,sha256=qyyUMdiv5ndUIk-O8uwamESJGXXDQ_BmhKiLlm31ue0,286
|
126
155
|
prefect/infrastructure/base.py,sha256=qyyUMdiv5ndUIk-O8uwamESJGXXDQ_BmhKiLlm31ue0,286
|
@@ -131,7 +160,7 @@ prefect/infrastructure/provisioners/ecs.py,sha256=8cqabILtoy7t3ISuX8VbFCcG3IOFr3
|
|
131
160
|
prefect/infrastructure/provisioners/modal.py,sha256=4-VanBPqWlAj_5ckpXT7NonbqP0YwznTXFa4P8cthIs,9080
|
132
161
|
prefect/input/__init__.py,sha256=Ue2h-YhYP71nEtsVJaslqMwO6C0ckjhjTYwwEgp-E3g,701
|
133
162
|
prefect/input/actions.py,sha256=IGdWjVcesnRjLmPCzB4ZM7FkRWXDKCku6yhE-7p0vKk,3777
|
134
|
-
prefect/input/run_input.py,sha256=
|
163
|
+
prefect/input/run_input.py,sha256=2-ii1LkLcsB-LHiy8abIIRlLQAWw33z7fP24f19Lg6A,18764
|
135
164
|
prefect/locking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
136
165
|
prefect/locking/filesystem.py,sha256=zhNwdKroi2kLR6Cut6CMT-rWmFwtTtzuGKSwGH_Iw0s,8084
|
137
166
|
prefect/locking/memory.py,sha256=mFUgV750ywEL7aVQuxFjg9gxbjVU4esBQn7bGQYzeMY,7548
|
@@ -143,16 +172,11 @@ prefect/logging/formatters.py,sha256=3nBWgawvD48slT0zgkKeus1gIyf0OjmDKdLwMEe5mPU
|
|
143
172
|
prefect/logging/handlers.py,sha256=ywaVcQmC8-v_B9l7Cand6kvjeFgPhfDTiqbHpQKt1vE,11943
|
144
173
|
prefect/logging/highlighters.py,sha256=_jnmY2q_35wOkKyGBz8j-pABvp2lz2wF_8uHxCgEy6M,1756
|
145
174
|
prefect/logging/loggers.py,sha256=mEthP-_vGAYm7bMhYcIENiJYP-u-gLTTtxV2Dl1ZtRU,12410
|
146
|
-
prefect/logging/logging.yml,sha256
|
147
|
-
prefect/records/__init__.py,sha256=rJJhaJBa0AWu63fJhtB-yHBi64qL6p4svo7F0qvm2sc,30
|
148
|
-
prefect/records/base.py,sha256=Ne-7pRGNfmk0a_Vm3t5zRrj26KgGr_L2_XfLID0XzIY,8035
|
149
|
-
prefect/records/filesystem.py,sha256=X-h7r5deiHH5IaaDk4ugOCmR5ZKnJeU2cLgp0AkMt0E,7316
|
150
|
-
prefect/records/memory.py,sha256=YdzQvEfb-CX0sKxAZK5TaNxVvAlyYlZse9qdoer6Xbk,6447
|
151
|
-
prefect/records/result_store.py,sha256=3ZUFNHCCv_qBQhmIFdvlK_GMnPZcFacaI9dVdDKWdwA,2431
|
175
|
+
prefect/logging/logging.yml,sha256=tT7gTyC4NmngFSqFkCdHaw7R0GPNPDDsTCGZQByiJAQ,3169
|
152
176
|
prefect/runner/__init__.py,sha256=7U-vAOXFkzMfRz1q8Uv6Otsvc0OrPYLLP44srwkJ_8s,89
|
153
|
-
prefect/runner/runner.py,sha256=
|
177
|
+
prefect/runner/runner.py,sha256=yJOxL_VAZvpzYJFEv2fBbb1tfI0P9pdxD64TwI8Ae-0,54068
|
154
178
|
prefect/runner/server.py,sha256=UXlxugqV1SiC49aTnwCDsEdQS6AXyfstaJWukuOBVO8,11171
|
155
|
-
prefect/runner/storage.py,sha256=
|
179
|
+
prefect/runner/storage.py,sha256=mK9RBbiHsVlvhPRxSrmQoMKOVwcSYwhBmP4diUSAZrY,27322
|
156
180
|
prefect/runner/submit.py,sha256=DGhBUUIg-N3z788ZqaCcqpIPkvCzQtZeLqjKtQNV1IA,8137
|
157
181
|
prefect/runner/utils.py,sha256=MLtoouDD6bh-JAIz0W3fMofKXEt0VfGsg6d8jf45OA0,3280
|
158
182
|
prefect/runtime/__init__.py,sha256=JswiTlYRup2zXOYu8AqJ7czKtgcw9Kxo0tTbS6aWCqY,407
|
@@ -165,58 +189,60 @@ prefect/settings/__init__.py,sha256=98gr0K9ovrBz1RQsOIUvYTx2RURbFR5PFKew51Ne314,
|
|
165
189
|
prefect/settings/base.py,sha256=lTekZKFzC8IWr4MiejqroJd4Hx6Hk7xu09wn39S99Ng,8470
|
166
190
|
prefect/settings/constants.py,sha256=5NjVLG1Km9J9I-a6wrq-qmi_dTkPdwEk3IrY9bSxWvw,281
|
167
191
|
prefect/settings/context.py,sha256=yKxnaDJHX8e2jmAVtw1RF9o7X4V3AOcz61sVeQyPX2c,2195
|
168
|
-
prefect/settings/legacy.py,sha256=
|
169
|
-
prefect/settings/profiles.py,sha256=
|
192
|
+
prefect/settings/legacy.py,sha256=SlszL6trSFa79gEDJeA1z5hx_jfXZrzFtlVwlHdG8xo,5671
|
193
|
+
prefect/settings/profiles.py,sha256=foLFBkJ9U9z49rDmBZCK_KcBLb_DAmRhbcPSFF7RabA,12260
|
170
194
|
prefect/settings/profiles.toml,sha256=kTvqDNMzjH3fsm5OEI-NKY4dMmipor5EvQXRB6rPEjY,522
|
171
195
|
prefect/settings/sources.py,sha256=qoRt-XwfDB6-rC1UeZxF08G5DzpEtIU66mtm5fI7dP8,12676
|
172
196
|
prefect/settings/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
173
|
-
prefect/settings/models/api.py,sha256=
|
174
|
-
prefect/settings/models/cli.py,sha256=
|
175
|
-
prefect/settings/models/client.py,sha256=
|
176
|
-
prefect/settings/models/cloud.py,sha256=
|
177
|
-
prefect/settings/models/deployments.py,sha256=
|
178
|
-
prefect/settings/models/experiments.py,sha256=
|
179
|
-
prefect/settings/models/flows.py,sha256=
|
180
|
-
prefect/settings/models/internal.py,sha256=
|
181
|
-
prefect/settings/models/logging.py,sha256=
|
182
|
-
prefect/settings/models/results.py,sha256=
|
183
|
-
prefect/settings/models/root.py,sha256=
|
184
|
-
prefect/settings/models/runner.py,sha256=
|
185
|
-
prefect/settings/models/tasks.py,sha256
|
186
|
-
prefect/settings/models/testing.py,sha256=
|
187
|
-
prefect/settings/models/worker.py,sha256
|
197
|
+
prefect/settings/models/api.py,sha256=YD1XxTJgYq8qbd9mBWYKE8lPgfydj7sA93DCFk6YMFU,1753
|
198
|
+
prefect/settings/models/cli.py,sha256=zGxanG2SY7u-2Pm6qLIlUc8efLpXX_3r8Aq2OGTXSKQ,1002
|
199
|
+
prefect/settings/models/client.py,sha256=brGik8fiQZukUsscddAFJyJ9N_7OPVc8yjR63QMwJX4,3070
|
200
|
+
prefect/settings/models/cloud.py,sha256=EXq7VzRSbbjoh8YB1y_SO4noYo0HcxrDGAyHdVZ9eH0,1963
|
201
|
+
prefect/settings/models/deployments.py,sha256=7Hrikhg0dJAbN1IJAN2pP1_jqVPd49l-WebWTvXfHIY,1279
|
202
|
+
prefect/settings/models/experiments.py,sha256=KsNkjYDriNsvx-FO6ISlhRSSK0XP0GliXAdbvUh1le8,825
|
203
|
+
prefect/settings/models/flows.py,sha256=m0FS2uQ2duIwqlcCBUWoHaD2IueheAz4NwoUTT8YKcM,1100
|
204
|
+
prefect/settings/models/internal.py,sha256=VUUydYG8-yu7Sq0gcqQuiX_PQ0apid9LwMikNVuYJus,675
|
205
|
+
prefect/settings/models/logging.py,sha256=QpJmXnBaUjTZqFT_NuyDFkukfd1_Dp-pevq_mbyxKsU,4630
|
206
|
+
prefect/settings/models/results.py,sha256=QnRHXoxHwT98_SacGfL4n0qjz08IFpCaTC99s1baoHI,1441
|
207
|
+
prefect/settings/models/root.py,sha256=iiXViZeTHYTRvxHBRKbKIPejwKmh7OAyN8J5u4efvP8,16425
|
208
|
+
prefect/settings/models/runner.py,sha256=qWBvScVtUFJNFXIrvyGQo7RKoz5xtkyRKvjP_YMth_M,1927
|
209
|
+
prefect/settings/models/tasks.py,sha256=-dmvMpWpjwn-7QEI9ONk7soLyvkSPp15CaAVNRciLkM,3397
|
210
|
+
prefect/settings/models/testing.py,sha256=swRS_F7Cqyw_lpHLjKc-my5yzH3TgAWOaDx-QIdTFcQ,1777
|
211
|
+
prefect/settings/models/worker.py,sha256=-MaOGjMu-Q9gw5tWjhc9ADAXj2xj-B_7bZq66R3-A58,1314
|
188
212
|
prefect/settings/models/server/__init__.py,sha256=KJmffmlHb8GYnClaeYcerae-IaeNsNMucKKRRS_zG9Q,33
|
189
|
-
prefect/settings/models/server/api.py,sha256=
|
190
|
-
prefect/settings/models/server/database.py,sha256=
|
191
|
-
prefect/settings/models/server/deployments.py,sha256=
|
192
|
-
prefect/settings/models/server/ephemeral.py,sha256=
|
193
|
-
prefect/settings/models/server/events.py,sha256=
|
194
|
-
prefect/settings/models/server/flow_run_graph.py,sha256=
|
195
|
-
prefect/settings/models/server/root.py,sha256=
|
196
|
-
prefect/settings/models/server/services.py,sha256=
|
197
|
-
prefect/settings/models/server/tasks.py,sha256=
|
198
|
-
prefect/settings/models/server/ui.py,sha256=
|
213
|
+
prefect/settings/models/server/api.py,sha256=BZvR-BpXl42V_Yr45d1t-6uzgOiLCkpcEzyTPIJpOzw,5016
|
214
|
+
prefect/settings/models/server/database.py,sha256=4Hxirw_sniPupEzKT_9Gj30UZrGVcJ5oIsaGk11mp0M,7276
|
215
|
+
prefect/settings/models/server/deployments.py,sha256=sa4tpZePSYvSPUgQWAxDh96ijuU3wrKbl_gTWBa-PtE,855
|
216
|
+
prefect/settings/models/server/ephemeral.py,sha256=o58Z91NBZmxtinqNtND-1PcgnGOQvDYnLKovpSH5IIs,986
|
217
|
+
prefect/settings/models/server/events.py,sha256=RXXRi25BvxuPLWqG2I2cckFvr5JN0uAq9Pi4etaIXcw,5521
|
218
|
+
prefect/settings/models/server/flow_run_graph.py,sha256=ojKW330m2lsFAn3IMbrdDq5O_SIB427wFz9ywsjNZUo,1103
|
219
|
+
prefect/settings/models/server/root.py,sha256=pPsSZaVyxAKCHUmKiMirlyAU_33BoVnZJdg_Y-jaCm4,5172
|
220
|
+
prefect/settings/models/server/services.py,sha256=Ow-GQgYfh9FINbQoyLRAIx7D08gUcOee7VpjNSuQ1jE,17106
|
221
|
+
prefect/settings/models/server/tasks.py,sha256=qVHzf7eSl1dmng6yDSppztJg6_wbsJLh0fmJHRRlKvA,2912
|
222
|
+
prefect/settings/models/server/ui.py,sha256=SpIWjeWImLorfojBE2jA7HXCKNGlYgw7glKvwUNIt0w,1824
|
199
223
|
prefect/telemetry/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
200
|
-
prefect/telemetry/bootstrap.py,sha256=
|
224
|
+
prefect/telemetry/bootstrap.py,sha256=4ZGRlzLXrPM7xc2EECsq81t5LMIGC61FjeHLYaYTj3c,1439
|
201
225
|
prefect/telemetry/instrumentation.py,sha256=G8kDiN2N4l7A8on-BHbYnh8uqH71zuGr3t2JntxRv0Q,4183
|
202
226
|
prefect/telemetry/logging.py,sha256=yn5D4D2GGRrAv0y8wlHPN7PZDmQucGjQT_YauK9M9Yo,727
|
203
227
|
prefect/telemetry/processors.py,sha256=jw6j6LviOVxw3IBJe7cSjsxFk0zzY43jUmy6C9pcfCE,2272
|
204
|
-
prefect/telemetry/run_telemetry.py,sha256=
|
205
|
-
prefect/telemetry/services.py,sha256=
|
228
|
+
prefect/telemetry/run_telemetry.py,sha256=lMh__rrIQy1TW0r8RJnYZXDxodJyeVU6ymbyv4Mjtsc,8255
|
229
|
+
prefect/telemetry/services.py,sha256=9X42FNth2ZH_RJ1W-Zw5yE6sjksjEdXHd9Ndstw1kGc,2374
|
206
230
|
prefect/types/__init__.py,sha256=s-l0r8UiDs7GCEstOPMzbb9PvvF_0F4G8OcVy3_50Yk,4700
|
207
231
|
prefect/types/entrypoint.py,sha256=2FF03-wLPgtnqR_bKJDB2BsXXINPdu8ptY9ZYEZnXg8,328
|
208
232
|
prefect/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
209
233
|
prefect/utilities/_engine.py,sha256=nCmGjFotJnzCr5ccJMbdPEp27TWQq44Fi7nyOQKg7Rg,3357
|
234
|
+
prefect/utilities/_git.py,sha256=bPYWQdr9xvH0BqxR1ll1RkaSb3x0vhwylhYD5EilkKU,863
|
210
235
|
prefect/utilities/annotations.py,sha256=UbQSy60iz8oKHuDnoCDs9kzN3k92fov7g5Ie1rzcZSU,3098
|
211
|
-
prefect/utilities/asyncutils.py,sha256=
|
236
|
+
prefect/utilities/asyncutils.py,sha256=RKl4rPk_-VW0YYjQcESdrxolBWl2BUgpE2-QvEa_tTU,19805
|
212
237
|
prefect/utilities/callables.py,sha256=pQ60sVaQ8jMhVHj3t9mQ_NunTLFb2jK9-34gsb5JUMA,25729
|
213
238
|
prefect/utilities/collections.py,sha256=SH5v6YB8LxzlQGf-hWjB2kb_xEsL9kd5sjVhz0ZK320,23551
|
214
239
|
prefect/utilities/compat.py,sha256=nnPA3lf2f4Y-l645tYFFNmj5NDPaYvjqa9pbGKZ3WKE,582
|
215
240
|
prefect/utilities/context.py,sha256=23SDMgdt07SjmB1qShiykHfGgiv55NBzdbMXM3fE9CI,1447
|
216
241
|
prefect/utilities/dispatch.py,sha256=ykPKflsgO4zIayzQK-ILmZe34ogRdfbDjm3I2r-fNME,6318
|
217
242
|
prefect/utilities/dockerutils.py,sha256=bzokKf8mFS0YcKl6Wg9rZUZAC8dIzH6TdRIwylraVrw,20851
|
218
|
-
prefect/utilities/engine.py,sha256=
|
243
|
+
prefect/utilities/engine.py,sha256=rZBppHVDSTE9lmrJf4JIlDlzH_iaB3Ywn3q75WjkLms,28705
|
219
244
|
prefect/utilities/filesystem.py,sha256=W449XqS33-sIJs6FIc_McctzqhULK7uZDvW396E_YsA,5710
|
245
|
+
prefect/utilities/generics.py,sha256=qhyAIP19iYnf6s9OyBmbY5hVOC0qilrBsh9Np5zM24s,526
|
220
246
|
prefect/utilities/hashing.py,sha256=7jRy26s46IJAFRmVnCnoK9ek9N4p_UfXxQQvu2tW6dM,2589
|
221
247
|
prefect/utilities/importtools.py,sha256=6_Y9yuqt2aoSSTtTj6QYMVjFIxzY14uONtGbWF8JRy4,20223
|
222
248
|
prefect/utilities/math.py,sha256=UPIdJMP13lCU3o0Yz98o4VDw3LTkkrsOAsvAdA3Xifc,2954
|
@@ -226,7 +252,7 @@ prefect/utilities/pydantic.py,sha256=zOXEXLUK7M9umSRbmfPnIv-3D2sIIgCgvE3B5-Fdlf0
|
|
226
252
|
prefect/utilities/render_swagger.py,sha256=ro9dn_-RsWyoYrdeqkuCBEPBIZw4VnRSBx16hjjd3Es,4090
|
227
253
|
prefect/utilities/services.py,sha256=WRT77LW2IX3TCYoGIBsG-V8K_2P3oQWgtW7XkBGnhcs,7714
|
228
254
|
prefect/utilities/slugify.py,sha256=57Vb14t13F3zm1P65KAu8nVeAz0iJCd1Qc5eMG-R5y8,169
|
229
|
-
prefect/utilities/templating.py,sha256=
|
255
|
+
prefect/utilities/templating.py,sha256=L4X5zeZ9cfbedRT9KZlXi6WIReZpYZ82EDJ6oHqkosw,14153
|
230
256
|
prefect/utilities/text.py,sha256=cuXb5EwRP5qFV7w-3_axEft4rDIJAMS8jgCg0kqNGKQ,758
|
231
257
|
prefect/utilities/timeout.py,sha256=qSJTm7aCvLqZiPQqFvlIxgjFFB50o76Xs4ZkfxdvCNE,1280
|
232
258
|
prefect/utilities/urls.py,sha256=tnl2Y5FeAlXWWQSQiMNkD5YqBvD7FJ-Yas_FibATnW0,9133
|
@@ -235,14 +261,14 @@ prefect/utilities/schema_tools/__init__.py,sha256=At3rMHd2g_Em2P3_dFQlFgqR_EpBwr
|
|
235
261
|
prefect/utilities/schema_tools/hydration.py,sha256=4yQMynZSloPFp0tlA7g8udWqE2TjZgfm19Y4R4F0s04,9415
|
236
262
|
prefect/utilities/schema_tools/validation.py,sha256=Wix26IVR-ZJ32-6MX2pHhrwm3reB-Q4iB6_phn85OKE,10743
|
237
263
|
prefect/workers/__init__.py,sha256=EaM1F0RZ-XIJaGeTKLsXDnfOPHzVWk5bk0_c4BVS44M,64
|
238
|
-
prefect/workers/base.py,sha256=
|
264
|
+
prefect/workers/base.py,sha256=bJDrDu0NLz3UF_U-SrafSTXR0qSfqOIu-n64QW3Y-sU,49410
|
239
265
|
prefect/workers/block.py,sha256=qyyUMdiv5ndUIk-O8uwamESJGXXDQ_BmhKiLlm31ue0,286
|
240
266
|
prefect/workers/cloud.py,sha256=qyyUMdiv5ndUIk-O8uwamESJGXXDQ_BmhKiLlm31ue0,286
|
241
|
-
prefect/workers/process.py,sha256=
|
267
|
+
prefect/workers/process.py,sha256=Di3djng_U6_EgR8R-0RMhn5QWVRiER_lZHFYaJalyCw,19808
|
242
268
|
prefect/workers/server.py,sha256=lgh2FfSuaNU7b6HPxSFm8JtKvAvHsZGkiOo4y4tW1Cw,2022
|
243
269
|
prefect/workers/utilities.py,sha256=VfPfAlGtTuDj0-Kb8WlMgAuOfgXCdrGAnKMapPSBrwc,2483
|
244
|
-
prefect_client-3.1.
|
245
|
-
prefect_client-3.1.
|
246
|
-
prefect_client-3.1.
|
247
|
-
prefect_client-3.1.
|
248
|
-
prefect_client-3.1.
|
270
|
+
prefect_client-3.1.12.dist-info/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
|
271
|
+
prefect_client-3.1.12.dist-info/METADATA,sha256=HLoFcSHQg7oOYkpe3Y8JM1E7WQG8Ltf7GBWcTefmmvg,7287
|
272
|
+
prefect_client-3.1.12.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
273
|
+
prefect_client-3.1.12.dist-info/top_level.txt,sha256=MJZYJgFdbRc2woQCeB4vM6T33tr01TmkEhRcns6H_H4,8
|
274
|
+
prefect_client-3.1.12.dist-info/RECORD,,
|