prefect-client 2.20.0__py3-none-any.whl → 2.20.1__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/runner/storage.py +4 -0
- {prefect_client-2.20.0.dist-info → prefect_client-2.20.1.dist-info}/METADATA +38 -37
- {prefect_client-2.20.0.dist-info → prefect_client-2.20.1.dist-info}/RECORD +6 -6
- {prefect_client-2.20.0.dist-info → prefect_client-2.20.1.dist-info}/WHEEL +1 -1
- {prefect_client-2.20.0.dist-info → prefect_client-2.20.1.dist-info}/LICENSE +0 -0
- {prefect_client-2.20.0.dist-info → prefect_client-2.20.1.dist-info}/top_level.txt +0 -0
prefect/runner/storage.py
CHANGED
@@ -285,6 +285,10 @@ class GitRepository:
|
|
285
285
|
"branch": self._branch,
|
286
286
|
}
|
287
287
|
}
|
288
|
+
if self._include_submodules:
|
289
|
+
pull_step["prefect.deployments.steps.git_clone"][
|
290
|
+
"include_submodules"
|
291
|
+
] = self._include_submodules
|
288
292
|
if isinstance(self._credentials, Block):
|
289
293
|
pull_step["prefect.deployments.steps.git_clone"][
|
290
294
|
"credentials"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: prefect-client
|
3
|
-
Version: 2.20.
|
3
|
+
Version: 2.20.1
|
4
4
|
Summary: Workflow orchestration and management.
|
5
5
|
Home-page: https://www.prefect.io
|
6
6
|
Author: Prefect Technologies, Inc.
|
@@ -23,44 +23,45 @@ Classifier: Programming Language :: Python :: 3.11
|
|
23
23
|
Classifier: Topic :: Software Development :: Libraries
|
24
24
|
Requires-Python: >=3.8
|
25
25
|
Description-Content-Type: text/markdown
|
26
|
-
Requires-Dist: anyio
|
27
|
-
Requires-Dist: asgi-lifespan
|
28
|
-
Requires-Dist: cachetools
|
29
|
-
Requires-Dist: cloudpickle
|
30
|
-
Requires-Dist: coolname
|
31
|
-
Requires-Dist: croniter
|
32
|
-
Requires-Dist: fsspec
|
33
|
-
Requires-Dist:
|
34
|
-
Requires-Dist:
|
35
|
-
Requires-Dist:
|
36
|
-
Requires-Dist:
|
37
|
-
Requires-Dist:
|
38
|
-
Requires-Dist:
|
39
|
-
Requires-Dist:
|
40
|
-
Requires-Dist:
|
41
|
-
Requires-Dist:
|
42
|
-
Requires-Dist:
|
43
|
-
Requires-Dist:
|
44
|
-
Requires-Dist: pydantic
|
45
|
-
Requires-Dist:
|
46
|
-
Requires-Dist: python-
|
47
|
-
Requires-Dist:
|
48
|
-
Requires-Dist:
|
49
|
-
Requires-Dist:
|
50
|
-
Requires-Dist:
|
51
|
-
Requires-Dist:
|
52
|
-
Requires-Dist:
|
53
|
-
Requires-Dist:
|
54
|
-
Requires-Dist:
|
55
|
-
Requires-Dist:
|
56
|
-
Requires-Dist:
|
26
|
+
Requires-Dist: anyio<5.0.0,>=4.4.0
|
27
|
+
Requires-Dist: asgi-lifespan<3.0,>=1.0
|
28
|
+
Requires-Dist: cachetools<6.0,>=5.3
|
29
|
+
Requires-Dist: cloudpickle<4.0,>=2.0
|
30
|
+
Requires-Dist: coolname<3.0.0,>=1.0.4
|
31
|
+
Requires-Dist: croniter<3.0.0,>=1.0.12
|
32
|
+
Requires-Dist: fsspec>=2022.5.0
|
33
|
+
Requires-Dist: exceptiongroup>=1.2.1
|
34
|
+
Requires-Dist: graphviz>=0.20.1
|
35
|
+
Requires-Dist: griffe<0.48.0,>=0.20.0
|
36
|
+
Requires-Dist: httpcore<2.0.0,>=1.0.5
|
37
|
+
Requires-Dist: httpx[http2]!=0.23.2,>=0.23
|
38
|
+
Requires-Dist: importlib-resources<6.2.0,>=6.1.3
|
39
|
+
Requires-Dist: jsonpatch<2.0,>=1.32
|
40
|
+
Requires-Dist: jsonschema<5.0.0,>=4.0.0
|
41
|
+
Requires-Dist: orjson<4.0,>=3.7
|
42
|
+
Requires-Dist: packaging<24.3,>=21.3
|
43
|
+
Requires-Dist: pathspec>=0.8.0
|
44
|
+
Requires-Dist: pydantic[email]!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.10.0
|
45
|
+
Requires-Dist: pydantic-core<3.0.0,>=2.12.0
|
46
|
+
Requires-Dist: python-dateutil<3.0.0,>=2.8.2
|
47
|
+
Requires-Dist: python-slugify<9.0,>=5.0
|
48
|
+
Requires-Dist: pyyaml<7.0.0,>=5.4.1
|
49
|
+
Requires-Dist: rfc3339-validator<0.2.0,>=0.1.4
|
50
|
+
Requires-Dist: rich<14.0,>=11.0
|
51
|
+
Requires-Dist: ruamel.yaml>=0.17.0
|
52
|
+
Requires-Dist: sniffio<2.0.0,>=1.3.0
|
53
|
+
Requires-Dist: toml>=0.10.0
|
54
|
+
Requires-Dist: typing-extensions<5.0.0,>=4.5.0
|
55
|
+
Requires-Dist: ujson<6.0.0,>=5.8.0
|
56
|
+
Requires-Dist: uvicorn!=0.29.0,>=0.14.0
|
57
|
+
Requires-Dist: websockets<13.0,>=10.4
|
57
58
|
Requires-Dist: itsdangerous
|
58
|
-
Requires-Dist: python-multipart
|
59
|
-
Requires-Dist: importlib-metadata
|
60
|
-
Requires-Dist: pendulum
|
61
|
-
Requires-Dist: pendulum
|
59
|
+
Requires-Dist: python-multipart>=0.0.7
|
60
|
+
Requires-Dist: importlib-metadata>=4.4; python_version < "3.10"
|
61
|
+
Requires-Dist: pendulum<3.0; python_version < "3.12"
|
62
|
+
Requires-Dist: pendulum<4,>=3.0.0; python_version >= "3.12"
|
62
63
|
Provides-Extra: notifications
|
63
|
-
Requires-Dist: apprise
|
64
|
+
Requires-Dist: apprise<2.0.0,>=1.1.0; extra == "notifications"
|
64
65
|
|
65
66
|
<p align="center"><img src="https://github.com/PrefectHQ/prefect/assets/3407835/c654cbc6-63e8-4ada-a92a-efd2f8f24b85" width=1000></p>
|
66
67
|
|
@@ -237,7 +237,7 @@ prefect/pydantic/main.py,sha256=ups_UULBhCPhB-E7X7-Qgbpor1oJdqChRzpD0ZYQH8A,839
|
|
237
237
|
prefect/runner/__init__.py,sha256=7U-vAOXFkzMfRz1q8Uv6Otsvc0OrPYLLP44srwkJ_8s,89
|
238
238
|
prefect/runner/runner.py,sha256=45sZR2kDvhTODyGmeiRe-bgVWq5JHsmZvFPBsiiyKxA,45147
|
239
239
|
prefect/runner/server.py,sha256=kXbKSRG21f44BGqOlWR3dcfKs92begC74aM6GdZ_z4E,10674
|
240
|
-
prefect/runner/storage.py,sha256=
|
240
|
+
prefect/runner/storage.py,sha256=QkIDKB5NQzy_hoNgl74JKuo_BtiOR74r_-lhccdJEvI,24850
|
241
241
|
prefect/runner/submit.py,sha256=w53VdsqfwjW-M3e8hUAAoVlNrXsvGuuyGpEN0wi3vX0,8537
|
242
242
|
prefect/runner/utils.py,sha256=G8qv6AwAa43HcgLOo5vDhoXna1xP0HlaMVYEbAv0Pck,3318
|
243
243
|
prefect/runtime/__init__.py,sha256=iYmfK1HmXiXXCQK77wDloOqZmY7SFF5iyr37jRzuf-c,406
|
@@ -285,8 +285,8 @@ prefect/workers/block.py,sha256=aYY__uq3v1eq1kkbVukxyhQNbkknaKYo6-_3tcrfKKA,8067
|
|
285
285
|
prefect/workers/process.py,sha256=pPtCdA7fKQ4OsvoitT-cayZeh5HgLX4xBUYlb2Zad-Q,9475
|
286
286
|
prefect/workers/server.py,sha256=WVZJxR8nTMzK0ov0BD0xw5OyQpT26AxlXbsGQ1OrxeQ,1551
|
287
287
|
prefect/workers/utilities.py,sha256=VfPfAlGtTuDj0-Kb8WlMgAuOfgXCdrGAnKMapPSBrwc,2483
|
288
|
-
prefect_client-2.20.
|
289
|
-
prefect_client-2.20.
|
290
|
-
prefect_client-2.20.
|
291
|
-
prefect_client-2.20.
|
292
|
-
prefect_client-2.20.
|
288
|
+
prefect_client-2.20.1.dist-info/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
|
289
|
+
prefect_client-2.20.1.dist-info/METADATA,sha256=LRLUAgUEkAvRJjlJhMTYJWFPiAdSRA-kuaOYA5z9FCc,7407
|
290
|
+
prefect_client-2.20.1.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
291
|
+
prefect_client-2.20.1.dist-info/top_level.txt,sha256=MJZYJgFdbRc2woQCeB4vM6T33tr01TmkEhRcns6H_H4,8
|
292
|
+
prefect_client-2.20.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|