prefect-client 3.2.2__py3-none-any.whl → 3.2.4__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/__init__.py +15 -8
- prefect/_build_info.py +5 -0
- prefect/client/orchestration/__init__.py +16 -5
- prefect/main.py +0 -2
- prefect/server/api/__init__.py +34 -0
- prefect/server/api/admin.py +85 -0
- prefect/server/api/artifacts.py +224 -0
- prefect/server/api/automations.py +239 -0
- prefect/server/api/block_capabilities.py +25 -0
- prefect/server/api/block_documents.py +164 -0
- prefect/server/api/block_schemas.py +153 -0
- prefect/server/api/block_types.py +211 -0
- prefect/server/api/clients.py +246 -0
- prefect/server/api/collections.py +75 -0
- prefect/server/api/concurrency_limits.py +286 -0
- prefect/server/api/concurrency_limits_v2.py +269 -0
- prefect/server/api/csrf_token.py +38 -0
- prefect/server/api/dependencies.py +196 -0
- prefect/server/api/deployments.py +941 -0
- prefect/server/api/events.py +300 -0
- prefect/server/api/flow_run_notification_policies.py +120 -0
- prefect/server/api/flow_run_states.py +52 -0
- prefect/server/api/flow_runs.py +867 -0
- prefect/server/api/flows.py +210 -0
- prefect/server/api/logs.py +43 -0
- prefect/server/api/middleware.py +73 -0
- prefect/server/api/root.py +35 -0
- prefect/server/api/run_history.py +170 -0
- prefect/server/api/saved_searches.py +99 -0
- prefect/server/api/server.py +891 -0
- prefect/server/api/task_run_states.py +52 -0
- prefect/server/api/task_runs.py +342 -0
- prefect/server/api/task_workers.py +31 -0
- prefect/server/api/templates.py +35 -0
- prefect/server/api/ui/__init__.py +3 -0
- prefect/server/api/ui/flow_runs.py +128 -0
- prefect/server/api/ui/flows.py +173 -0
- prefect/server/api/ui/schemas.py +63 -0
- prefect/server/api/ui/task_runs.py +175 -0
- prefect/server/api/validation.py +382 -0
- prefect/server/api/variables.py +181 -0
- prefect/server/api/work_queues.py +230 -0
- prefect/server/api/workers.py +656 -0
- prefect/settings/sources.py +18 -5
- {prefect_client-3.2.2.dist-info → prefect_client-3.2.4.dist-info}/METADATA +10 -15
- {prefect_client-3.2.2.dist-info → prefect_client-3.2.4.dist-info}/RECORD +48 -10
- {prefect_client-3.2.2.dist-info → prefect_client-3.2.4.dist-info}/WHEEL +1 -2
- prefect/_version.py +0 -21
- prefect_client-3.2.2.dist-info/top_level.txt +0 -1
- {prefect_client-3.2.2.dist-info → prefect_client-3.2.4.dist-info/licenses}/LICENSE +0 -0
prefect/settings/sources.py
CHANGED
@@ -6,6 +6,7 @@ from typing import Any, Dict, List, Mapping, Optional, Sequence, Tuple, Type
|
|
6
6
|
|
7
7
|
import dotenv
|
8
8
|
import toml
|
9
|
+
from cachetools import TTLCache
|
9
10
|
from pydantic import AliasChoices
|
10
11
|
from pydantic.fields import FieldInfo
|
11
12
|
from pydantic_settings import (
|
@@ -23,6 +24,19 @@ from pydantic_settings.sources import (
|
|
23
24
|
from prefect.settings.constants import DEFAULT_PREFECT_HOME, DEFAULT_PROFILES_PATH
|
24
25
|
from prefect.utilities.collections import get_from_dict
|
25
26
|
|
27
|
+
_file_cache: TTLCache[str, dict[str, Any]] = TTLCache(maxsize=100, ttl=60)
|
28
|
+
|
29
|
+
|
30
|
+
def _read_toml_file(path: Path) -> dict[str, Any]:
|
31
|
+
"""use ttl cache to cache toml files"""
|
32
|
+
modified_time = path.stat().st_mtime
|
33
|
+
cache_key = f"toml_file:{path}:{modified_time}"
|
34
|
+
if value := _file_cache.get(cache_key):
|
35
|
+
return value
|
36
|
+
data = toml.load(path) # type: ignore
|
37
|
+
_file_cache[cache_key] = data
|
38
|
+
return data
|
39
|
+
|
26
40
|
|
27
41
|
class EnvFilterSettingsSource(EnvSettingsSource):
|
28
42
|
"""
|
@@ -120,12 +134,11 @@ class ProfileSettingsTomlLoader(PydanticBaseSettingsSource):
|
|
120
134
|
|
121
135
|
def _load_profile_settings(self) -> Dict[str, Any]:
|
122
136
|
"""Helper method to load the profile settings from the profiles.toml file"""
|
123
|
-
|
124
137
|
if not self.profiles_path.exists():
|
125
138
|
return self._get_default_profile()
|
126
139
|
|
127
140
|
try:
|
128
|
-
all_profile_data =
|
141
|
+
all_profile_data = _read_toml_file(self.profiles_path)
|
129
142
|
except toml.TomlDecodeError:
|
130
143
|
warnings.warn(
|
131
144
|
f"Failed to load profiles from {self.profiles_path}. Please ensure the file is valid TOML."
|
@@ -152,7 +165,7 @@ class ProfileSettingsTomlLoader(PydanticBaseSettingsSource):
|
|
152
165
|
|
153
166
|
def _get_default_profile(self) -> Dict[str, Any]:
|
154
167
|
"""Helper method to get the default profile"""
|
155
|
-
default_profile_data =
|
168
|
+
default_profile_data = _read_toml_file(DEFAULT_PROFILES_PATH)
|
156
169
|
default_profile = default_profile_data.get("active", "ephemeral")
|
157
170
|
assert isinstance(default_profile, str)
|
158
171
|
return default_profile_data.get("profiles", {}).get(default_profile, {})
|
@@ -217,7 +230,7 @@ class TomlConfigSettingsSourceBase(PydanticBaseSettingsSource, ConfigFileSourceM
|
|
217
230
|
self.toml_data: dict[str, Any] = {}
|
218
231
|
|
219
232
|
def _read_file(self, path: Path) -> dict[str, Any]:
|
220
|
-
return
|
233
|
+
return _read_toml_file(path)
|
221
234
|
|
222
235
|
def get_field_value(
|
223
236
|
self, field: FieldInfo, field_name: str
|
@@ -332,7 +345,7 @@ def _get_profiles_path_from_toml(path: str, keys: List[str]) -> Optional[str]:
|
|
332
345
|
"""Helper to get the profiles path from a toml file."""
|
333
346
|
|
334
347
|
try:
|
335
|
-
toml_data =
|
348
|
+
toml_data = _read_toml_file(Path(path))
|
336
349
|
except FileNotFoundError:
|
337
350
|
return None
|
338
351
|
|
@@ -1,20 +1,18 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: prefect-client
|
3
|
-
Version: 3.2.
|
3
|
+
Version: 3.2.4
|
4
4
|
Summary: Workflow orchestration and management.
|
5
|
-
Home-page: https://www.prefect.io
|
6
|
-
Author: Prefect Technologies, Inc.
|
7
|
-
Author-email: help@prefect.io
|
8
|
-
License: UNKNOWN
|
9
5
|
Project-URL: Changelog, https://github.com/PrefectHQ/prefect/releases
|
10
6
|
Project-URL: Documentation, https://docs.prefect.io
|
11
7
|
Project-URL: Source, https://github.com/PrefectHQ/prefect
|
12
8
|
Project-URL: Tracker, https://github.com/PrefectHQ/prefect/issues
|
13
|
-
|
14
|
-
|
9
|
+
Author-email: "Prefect Technologies, Inc." <help@prefect.io>
|
10
|
+
License: Apache-2.0
|
11
|
+
License-File: LICENSE
|
15
12
|
Classifier: Intended Audience :: Developers
|
16
13
|
Classifier: Intended Audience :: System Administrators
|
17
14
|
Classifier: License :: OSI Approved :: Apache Software License
|
15
|
+
Classifier: Natural Language :: English
|
18
16
|
Classifier: Programming Language :: Python :: 3 :: Only
|
19
17
|
Classifier: Programming Language :: Python :: 3.9
|
20
18
|
Classifier: Programming Language :: Python :: 3.10
|
@@ -22,8 +20,6 @@ Classifier: Programming Language :: Python :: 3.11
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.12
|
23
21
|
Classifier: Topic :: Software Development :: Libraries
|
24
22
|
Requires-Python: >=3.9
|
25
|
-
Description-Content-Type: text/markdown
|
26
|
-
License-File: LICENSE
|
27
23
|
Requires-Dist: anyio<5.0.0,>=4.4.0
|
28
24
|
Requires-Dist: asgi-lifespan<3.0,>=1.0
|
29
25
|
Requires-Dist: cachetools<6.0,>=5.3
|
@@ -37,6 +33,7 @@ Requires-Dist: graphviz>=0.20.1
|
|
37
33
|
Requires-Dist: griffe<2.0.0,>=0.49.0
|
38
34
|
Requires-Dist: httpcore<2.0.0,>=1.0.5
|
39
35
|
Requires-Dist: httpx[http2]!=0.23.2,>=0.23
|
36
|
+
Requires-Dist: importlib-metadata>=4.4; python_version < '3.10'
|
40
37
|
Requires-Dist: jsonpatch<2.0,>=1.32
|
41
38
|
Requires-Dist: jsonschema<5.0.0,>=4.0.0
|
42
39
|
Requires-Dist: opentelemetry-api<2.0.0,>=1.27.0
|
@@ -55,16 +52,16 @@ Requires-Dist: python-socks[asyncio]<3.0,>=2.5.3
|
|
55
52
|
Requires-Dist: pyyaml<7.0.0,>=5.4.1
|
56
53
|
Requires-Dist: rfc3339-validator<0.2.0,>=0.1.4
|
57
54
|
Requires-Dist: rich<14.0,>=11.0
|
58
|
-
Requires-Dist: ruamel
|
55
|
+
Requires-Dist: ruamel-yaml>=0.17.0
|
59
56
|
Requires-Dist: sniffio<2.0.0,>=1.3.0
|
60
57
|
Requires-Dist: toml>=0.10.0
|
61
58
|
Requires-Dist: typing-extensions<5.0.0,>=4.5.0
|
62
59
|
Requires-Dist: ujson<6.0.0,>=5.8.0
|
63
60
|
Requires-Dist: uvicorn!=0.29.0,>=0.14.0
|
64
61
|
Requires-Dist: websockets<14.0,>=10.4
|
65
|
-
Requires-Dist: importlib-metadata>=4.4; python_version < "3.10"
|
66
62
|
Provides-Extra: notifications
|
67
|
-
Requires-Dist: apprise<2.0.0,>=1.1.0; extra ==
|
63
|
+
Requires-Dist: apprise<2.0.0,>=1.1.0; extra == 'notifications'
|
64
|
+
Description-Content-Type: text/markdown
|
68
65
|
|
69
66
|
<p align="center"><img src="https://github.com/PrefectHQ/prefect/assets/3407835/c654cbc6-63e8-4ada-a92a-efd2f8f24b85" width=1000></p>
|
70
67
|
|
@@ -175,5 +172,3 @@ All community forums, including code contributions, issue discussions, and Slack
|
|
175
172
|
See our [documentation on contributing to Prefect](https://docs.prefect.io/contributing/overview/).
|
176
173
|
|
177
174
|
Thanks for being part of the mission to build a new kind of workflow system and, of course, **happy engineering!**
|
178
|
-
|
179
|
-
|
@@ -1,8 +1,8 @@
|
|
1
1
|
prefect/.prefectignore,sha256=awSprvKT0vI8a64mEOLrMxhxqcO-b0ERQeYpA2rNKVQ,390
|
2
|
-
prefect/__init__.py,sha256=
|
2
|
+
prefect/__init__.py,sha256=iCdcC5ZmeewikCdnPEP6YBAjPNV5dvfxpYCTpw30Hkw,3685
|
3
3
|
prefect/__main__.py,sha256=WFjw3kaYJY6pOTA7WDOgqjsz8zUEUZHCcj3P5wyVa-g,66
|
4
|
+
prefect/_build_info.py,sha256=e434diXhYl_qvdeW6g7XxxVRtotlQjlwD7FERjcUhyE,180
|
4
5
|
prefect/_result_records.py,sha256=S6QmsODkehGVSzbMm6ig022PYbI6gNKz671p_8kBYx4,7789
|
5
|
-
prefect/_version.py,sha256=fkGKjBZxa9euBDaB1-Et12BbPmFVnGW9hKhhKf3SSQs,496
|
6
6
|
prefect/agent.py,sha256=dPvG1jDGD5HSH7aM2utwtk6RaJ9qg13XjkA0lAIgQmY,287
|
7
7
|
prefect/artifacts.py,sha256=dMBUOAWnUamzjb5HSqwB5-GR2Qb-Gxee26XG5NDCUuw,22720
|
8
8
|
prefect/automations.py,sha256=ZzPxn2tINdlXTQo805V4rIlbXuNWxd7cdb3gTJxZIeY,12567
|
@@ -15,7 +15,7 @@ prefect/flow_engine.py,sha256=mW95w_fBpEPejYFXuMyjfnhm7J1jMSv_VtAYGD0VlCo,60226
|
|
15
15
|
prefect/flow_runs.py,sha256=MzjfRFgQwOqUSC3Iuu6E0hWkWdn089Urk6BY3qjEwEE,16113
|
16
16
|
prefect/flows.py,sha256=cp9TF3pSg73jhkL3SkzaUGbdU9hbsieKz95Wgfk-VA4,108408
|
17
17
|
prefect/futures.py,sha256=NYWGeC8uRGe1WWB1MxkUshdvAdYibhc32HdFjffdiW0,17217
|
18
|
-
prefect/main.py,sha256=
|
18
|
+
prefect/main.py,sha256=hFeTTrr01qWKcRwZVEHVipyHEybS0VLTscFV6zG6GtY,2306
|
19
19
|
prefect/plugins.py,sha256=FPRLR2mWVBMuOnlzeiTD9krlHONZH2rtYLD753JQDNQ,2516
|
20
20
|
prefect/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
21
|
prefect/results.py,sha256=gAcYivq5CN8oL5CWu8cJe2560i0M8I5GL-8RcBTJ6VI,36385
|
@@ -80,7 +80,7 @@ prefect/client/collections.py,sha256=t9XkVU_onQMZ871L21F1oZnAiPSQeeVfd_MuDEBS3iM
|
|
80
80
|
prefect/client/constants.py,sha256=Z_GG8KF70vbbXxpJuqW5pLnwzujTVeHbcYYRikNmGH0,29
|
81
81
|
prefect/client/subscriptions.py,sha256=TZ7Omv8yeQQIkE6EmWYM78e8p7UdvdTDzcQe91dCU4U,3838
|
82
82
|
prefect/client/utilities.py,sha256=UEJD6nwYg2mD8-GSmru-E2ofXaBlmSFZ2-8T_5rIK6c,3472
|
83
|
-
prefect/client/orchestration/__init__.py,sha256
|
83
|
+
prefect/client/orchestration/__init__.py,sha256=uKWE1XNiwrOswgZ1JptffksRlji9PDrLcy8T9ZfNw1g,59596
|
84
84
|
prefect/client/orchestration/base.py,sha256=HM6ryHBZSzuHoCFQM9u5qR5k1dN9Bbr_ah6z1UPNbZQ,1542
|
85
85
|
prefect/client/orchestration/routes.py,sha256=JFG1OWUBfrxPKW8Q7XWItlhOrSZ67IOySSoFZ6mxzm0,4364
|
86
86
|
prefect/client/orchestration/_artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -189,8 +189,47 @@ prefect/runtime/__init__.py,sha256=JswiTlYRup2zXOYu8AqJ7czKtgcw9Kxo0tTbS6aWCqY,4
|
|
189
189
|
prefect/runtime/deployment.py,sha256=0A_cUVpYiFk3ciJw2ixy95dk9xBJcjisyF69pakSCcQ,5091
|
190
190
|
prefect/runtime/flow_run.py,sha256=hBa6h99G9K5iHdDUvHoJ2Yg9h5cZVEe_OEEJ2VuJHwk,10557
|
191
191
|
prefect/runtime/task_run.py,sha256=zYBSs7QrAu7c2IjKomRzPXKyIXrjqclMTMrco-dwyOw,4212
|
192
|
+
prefect/server/api/__init__.py,sha256=W6s6QR91ogg7pssnFdV0bptpXtP1gbjqjnhySK1hFJM,616
|
193
|
+
prefect/server/api/admin.py,sha256=nINYSrux7XPAV4MMDQUts3X2dddrc3mJtd3iPl5N-jI,2644
|
194
|
+
prefect/server/api/artifacts.py,sha256=p3aMPokKEsm-q7_DXyWgxLck8PmG0dB6wDZN13x4wHM,7181
|
195
|
+
prefect/server/api/automations.py,sha256=05wcjN_B_2GApO2nE-68_P7AC1jDltvcKBLXRcmg210,8110
|
196
|
+
prefect/server/api/block_capabilities.py,sha256=rHp5DBMlfpMFD0j7MitgFF8seI3du0l5ZZJAnZ4fCzE,699
|
197
|
+
prefect/server/api/block_documents.py,sha256=L24UtiBugu3WbeR9UIcLTjcG5pNaQy3HMd71UhxmnAA,5763
|
198
|
+
prefect/server/api/block_schemas.py,sha256=Ti_zokXuCnnM3yswmKR-wC51aTso0ITPh1wrIKi208M,5380
|
199
|
+
prefect/server/api/block_types.py,sha256=nUpHtv9qqsuy7EFOyx6GbAmW45_-9fjMKm3SMcEbMvU,8252
|
200
|
+
prefect/server/api/clients.py,sha256=7Xr10JPj3FykLJ3v6Id251LgW6W-6xaWyqSU_RWcolA,8867
|
201
|
+
prefect/server/api/collections.py,sha256=RI7cjdM8RYFyAk2rgb35vqh06PWGXAamTvwThl83joY,2454
|
202
|
+
prefect/server/api/concurrency_limits.py,sha256=Zc1PPTK5g4iRWXLE348ygpWaJQH5gKaECLQR-p_u5a4,10576
|
203
|
+
prefect/server/api/concurrency_limits_v2.py,sha256=TcF_MjacYlA54uf0EGVZp3LVzdDTW-Ol-HgbTvj3Yt0,9947
|
204
|
+
prefect/server/api/csrf_token.py,sha256=BwysSjQAhre7O0OY_LF3ZcIiO53FdMQroNT11Q6OcOM,1344
|
205
|
+
prefect/server/api/dependencies.py,sha256=VujfcIGn41TGJxUunFHVabY5hE-6nY6uSHyhNFj8PdI,6634
|
206
|
+
prefect/server/api/deployments.py,sha256=UP-MXgkcmLPz48yg-MnRRGgiF_9dLt4KT4XSApuWZNM,37640
|
207
|
+
prefect/server/api/events.py,sha256=Z5nYS6w1avcQMoFtcB502WANMYixLLjsevSDksI22a4,9814
|
208
|
+
prefect/server/api/flow_run_notification_policies.py,sha256=bMwBuqUDyQTO5GxU2v4inmb9FZ27iLMYhUNy8qvMVcM,4693
|
209
|
+
prefect/server/api/flow_run_states.py,sha256=3whjUoYp9dOEtwiNE0d72vsrlFMU6Ck1ZtQlCzM_n08,1556
|
210
|
+
prefect/server/api/flow_runs.py,sha256=tezz_lkHxj13fn4lQMz_Aazf29gPnebxwN59WvwNb8o,32543
|
211
|
+
prefect/server/api/flows.py,sha256=oOrfmDPM2lvQ2EP2GbEuxSZ5SmYsqc2nHYJo4QL7bBo,6939
|
212
|
+
prefect/server/api/logs.py,sha256=Cigu-xilkCxAv7lPistoun5lzvf3Ohyf0uNTnj1chXA,1486
|
213
|
+
prefect/server/api/middleware.py,sha256=WkyuyeJIfo9Q0GAIVU5gO6yIGNVwoHwuBah5AB5oUyw,2733
|
214
|
+
prefect/server/api/root.py,sha256=CeumFYIM_BDvPicJH9ry5PO_02PZTLeMqbLMGGTh90o,942
|
215
|
+
prefect/server/api/run_history.py,sha256=FHepAgo1AYFeuh7rrAVzo_o3hu8Uc8-4DeH5aD5VGgw,5995
|
216
|
+
prefect/server/api/saved_searches.py,sha256=UjoqLLe245QVIs6q5Vk4vdODCOoYzciEEjhi7B8sYCE,3233
|
217
|
+
prefect/server/api/server.py,sha256=mAAZ_l0tfcpdnNDvP7-uP8w3f5HkjitpKZlyFBhLrYA,31835
|
218
|
+
prefect/server/api/task_run_states.py,sha256=qlMUR4cH943EVgAkHHwTyHznb613VNa4WErEHdwcU60,1568
|
219
|
+
prefect/server/api/task_runs.py,sha256=_rZXe2ZJDnOr3kf2MfBPMUI3N_6lbcVkJxvl-A1IKDQ,12160
|
220
|
+
prefect/server/api/task_workers.py,sha256=TLvw0DckIqAeIaS3jky9zEF3nT2FII2F7oEE5Kf_13U,950
|
221
|
+
prefect/server/api/templates.py,sha256=92bLFfcahZUp5PVNTZPjl8uJSDj4ZYRTVdmTzZXkERg,1027
|
222
|
+
prefect/server/api/validation.py,sha256=HxSNyH8yb_tI-kOfjXESRjJp6WQK6hYWBJsaBxUvY34,14490
|
223
|
+
prefect/server/api/variables.py,sha256=h7weLT5WeZPBu1NLgK35-rP9cch-Y-EwLknn1xyxrP4,6069
|
224
|
+
prefect/server/api/work_queues.py,sha256=a-Ld2Rr03RH3HH0qE94x7XqZKz2V3HWcf5XqMpX6qVE,7445
|
225
|
+
prefect/server/api/workers.py,sha256=7FF4nbsBfUwjjjg2_7uH3itfDHeg0spgXo-ZH8ZrZ3k,22358
|
192
226
|
prefect/server/api/collections_data/views/aggregate-worker-metadata.json,sha256=gqrwGyylzBEzlFSPOJcMuUwdoK_zojpU0SZaBDgK5FE,79748
|
193
227
|
prefect/server/api/static/prefect-logo-mark-gradient.png,sha256=ylRjJkI_JHCw8VbQasNnXQHwZW-sH-IQiUGSD3aWP1E,73430
|
228
|
+
prefect/server/api/ui/__init__.py,sha256=TCXO4ZUZCqCbm2QoNvWNTErkzWiX2nSACuO-0Tiomvg,93
|
229
|
+
prefect/server/api/ui/flow_runs.py,sha256=ALmUFY4WrJggN1ha0z-tqXeddG2GptswbPnB7iYixUM,4172
|
230
|
+
prefect/server/api/ui/flows.py,sha256=-g1xKHGBwh59CiILvrK3qlSE9g4boupCh4fl8UvF-iw,5647
|
231
|
+
prefect/server/api/ui/schemas.py,sha256=moKeBqG9qdCo6yHoxeDnmvHrGoLCerHc4GMEQwzqleU,2050
|
232
|
+
prefect/server/api/ui/task_runs.py,sha256=9zKN96k9GD5uUzKWNq_l-JA8ui4OqRhjyN7B3V8IHXs,6667
|
194
233
|
prefect/settings/__init__.py,sha256=3jDLzExmq9HsRWo1kTSE16BO_3B3JlVsk5pR0s4PWEQ,2136
|
195
234
|
prefect/settings/base.py,sha256=IWCFoDLKecoSlEtscwVlBwbC6KgzBHHwYODhLlOdWX8,8821
|
196
235
|
prefect/settings/constants.py,sha256=5NjVLG1Km9J9I-a6wrq-qmi_dTkPdwEk3IrY9bSxWvw,281
|
@@ -198,7 +237,7 @@ prefect/settings/context.py,sha256=yKxnaDJHX8e2jmAVtw1RF9o7X4V3AOcz61sVeQyPX2c,2
|
|
198
237
|
prefect/settings/legacy.py,sha256=KG00GwaURl1zbwfCKAjwNRdJjB2UdTyo80gYF7U60jk,5693
|
199
238
|
prefect/settings/profiles.py,sha256=Z8vOgHx2SR_l35SsFLnrFi2qfRY2_Psn0epx5zZD8WI,12392
|
200
239
|
prefect/settings/profiles.toml,sha256=kTvqDNMzjH3fsm5OEI-NKY4dMmipor5EvQXRB6rPEjY,522
|
201
|
-
prefect/settings/sources.py,sha256
|
240
|
+
prefect/settings/sources.py,sha256=x-yJT9aENh32wGVxe9WZg6KLLCZOZOMV0h5dDHuR6FA,13545
|
202
241
|
prefect/settings/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
203
242
|
prefect/settings/models/api.py,sha256=XOxZDtNKeXgOMtvlr6QBJ1_UsvsXad3m0ECgZ0vAfaA,1796
|
204
243
|
prefect/settings/models/cli.py,sha256=U-KwO1mfwj-hsyrR0KfS4eHg1-M1rr6VllqOt-VzoBM,1045
|
@@ -275,8 +314,7 @@ prefect/workers/cloud.py,sha256=dPvG1jDGD5HSH7aM2utwtk6RaJ9qg13XjkA0lAIgQmY,287
|
|
275
314
|
prefect/workers/process.py,sha256=6VWon_LK7fQNLlQTjTBFeU4KFUa4faqP4EUuTvrbtbg,20176
|
276
315
|
prefect/workers/server.py,sha256=SEuyScZ5nGm2OotdtbHjpvqJlTRVWCh29ND7FeL_fZA,1974
|
277
316
|
prefect/workers/utilities.py,sha256=VfPfAlGtTuDj0-Kb8WlMgAuOfgXCdrGAnKMapPSBrwc,2483
|
278
|
-
prefect_client-3.2.
|
279
|
-
prefect_client-3.2.
|
280
|
-
prefect_client-3.2.
|
281
|
-
prefect_client-3.2.
|
282
|
-
prefect_client-3.2.2.dist-info/RECORD,,
|
317
|
+
prefect_client-3.2.4.dist-info/METADATA,sha256=wA8CGBB7gfDHiy7qZko23qYiShsCGNbPZXgV8YbuSAg,7231
|
318
|
+
prefect_client-3.2.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
319
|
+
prefect_client-3.2.4.dist-info/licenses/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
|
320
|
+
prefect_client-3.2.4.dist-info/RECORD,,
|
prefect/_version.py
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
|
2
|
-
# This file was generated by 'versioneer.py' (0.29) from
|
3
|
-
# revision-control system data, or from the parent directory name of an
|
4
|
-
# unpacked source archive. Distribution tarballs contain a pre-generated copy
|
5
|
-
# of this file.
|
6
|
-
|
7
|
-
import json
|
8
|
-
|
9
|
-
version_json = '''
|
10
|
-
{
|
11
|
-
"date": "2025-02-13T10:53:49-0500",
|
12
|
-
"dirty": true,
|
13
|
-
"error": null,
|
14
|
-
"full-revisionid": "d982c69a8bd4fb92cb250bc91dea25d361601260",
|
15
|
-
"version": "3.2.2"
|
16
|
-
}
|
17
|
-
''' # END VERSION_JSON
|
18
|
-
|
19
|
-
|
20
|
-
def get_versions():
|
21
|
-
return json.loads(version_json)
|
@@ -1 +0,0 @@
|
|
1
|
-
prefect
|
File without changes
|