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 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.0
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 <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: graphviz >=0.20.1
34
- Requires-Dist: griffe <0.48.0,>=0.20.0
35
- Requires-Dist: httpcore <2.0.0,>=1.0.5
36
- Requires-Dist: httpx[http2] !=0.23.2,>=0.23
37
- Requires-Dist: importlib-resources <6.2.0,>=6.1.3
38
- Requires-Dist: jsonpatch <2.0,>=1.32
39
- Requires-Dist: jsonschema <5.0.0,>=4.0.0
40
- Requires-Dist: orjson <4.0,>=3.7
41
- Requires-Dist: packaging <24.3,>=21.3
42
- Requires-Dist: pathspec >=0.8.0
43
- Requires-Dist: pydantic[email] !=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.10.0
44
- Requires-Dist: pydantic-core <3.0.0,>=2.12.0
45
- Requires-Dist: python-dateutil <3.0.0,>=2.8.2
46
- Requires-Dist: python-slugify <9.0,>=5.0
47
- Requires-Dist: pyyaml <7.0.0,>=5.4.1
48
- Requires-Dist: rfc3339-validator <0.2.0,>=0.1.4
49
- Requires-Dist: rich <14.0,>=11.0
50
- Requires-Dist: ruamel.yaml >=0.17.0
51
- Requires-Dist: sniffio <2.0.0,>=1.3.0
52
- Requires-Dist: toml >=0.10.0
53
- Requires-Dist: typing-extensions <5.0.0,>=4.5.0
54
- Requires-Dist: ujson <6.0.0,>=5.8.0
55
- Requires-Dist: uvicorn !=0.29.0,>=0.14.0
56
- Requires-Dist: websockets <13.0,>=10.4
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 >=0.0.7
59
- Requires-Dist: importlib-metadata >=4.4 ; python_version < "3.10"
60
- Requires-Dist: pendulum <3.0 ; python_version < "3.12"
61
- Requires-Dist: pendulum <4,>=3.0.0 ; python_version >= "3.12"
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 <2.0.0,>=1.1.0 ; extra == 'notifications'
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=rjvbni_vvYu4msApYFyu-bM1iOawiOvz9w575_H1QZM,24673
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.0.dist-info/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
289
- prefect_client-2.20.0.dist-info/METADATA,sha256=GRcdYDHMdwoy3FRSFZvP_sNOvtU3VEgUx1VMD6wUXdU,7410
290
- prefect_client-2.20.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
291
- prefect_client-2.20.0.dist-info/top_level.txt,sha256=MJZYJgFdbRc2woQCeB4vM6T33tr01TmkEhRcns6H_H4,8
292
- prefect_client-2.20.0.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: bdist_wheel (0.44.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5