hatchet-sdk 0.42.1__py3-none-any.whl → 0.42.2__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.

Potentially problematic release.


This version of hatchet-sdk might be problematic. Click here for more details.

@@ -42,7 +42,6 @@ class HatchetCallable(Generic[T]):
42
42
  default_priority: int | None = None,
43
43
  ):
44
44
  self.func = func
45
- self.validators = func.validators
46
45
 
47
46
  on_events = on_events or []
48
47
  on_crons = on_crons or []
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hatchet-sdk
3
- Version: 0.42.1
3
+ Version: 0.42.2
4
4
  Summary:
5
5
  Author: Alexander Belanger
6
6
  Author-email: alexander@hatchet.run
@@ -212,7 +212,7 @@ hatchet_sdk/utils/serialization.py,sha256=P2Uq0yxg-Cea5Lmf6IOh2r7W17MNF1Hv2qxSny
212
212
  hatchet_sdk/utils/tracing.py,sha256=UjTw2vMLg1p6GjOGwt634nYJaNZh8c70PBxOBVLiDQ4,2261
213
213
  hatchet_sdk/utils/types.py,sha256=qhx1OoeXh77AN6s4SMaGpB3zK3hPm7ocv-23JFa6_wE,191
214
214
  hatchet_sdk/utils/typing.py,sha256=qXhnoQJXjXwuzyZUQ2H3YQ6YW7vL9D_kvmh2kJM5Z9s,233
215
- hatchet_sdk/v2/callable.py,sha256=Lnt-kUdM-UJIqCIWZnXgVQHJ11GK9akW66i1oz45WAg,7011
215
+ hatchet_sdk/v2/callable.py,sha256=t3O9_IczXCgeYXJQNmVcllDp_5c4a_qNpzQ099Xsams,6969
216
216
  hatchet_sdk/v2/concurrency.py,sha256=aDr8vunzEJOoe2iGxip6M2fbGTde19kJu-UxCNkXQjM,1282
217
217
  hatchet_sdk/v2/hatchet.py,sha256=begVaMZmBllykNuyfAvqhL88m5ELBmx7RrJvsL4xdmY,6872
218
218
  hatchet_sdk/worker/__init__.py,sha256=1Ze1seDuXx5yD1IfHmqGFgK5qrRazVW4ZcDVGl-Pddw,61
@@ -224,7 +224,7 @@ hatchet_sdk/worker/runner/utils/error_with_traceback.py,sha256=Iih_s8JNqrinXETFJ
224
224
  hatchet_sdk/worker/worker.py,sha256=fBqTuSnE4lfl-CMTg0FYuw1jE20_CJOwyu2QuzTGdpU,11335
225
225
  hatchet_sdk/workflow.py,sha256=qH7lEtR8lvwfP0lHPN2dXJjEh2xmHST19ADW7z82OgM,9209
226
226
  hatchet_sdk/workflow_run.py,sha256=BwK5cefvXXvyQ1Ednj_7LeejMwQJqWnvUC_FTBmJNxk,1805
227
- hatchet_sdk-0.42.1.dist-info/METADATA,sha256=BaDtr-PCud9AbcDoCGbMWi-P7Q-z29y2VtJlapr9m_8,1471
228
- hatchet_sdk-0.42.1.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
229
- hatchet_sdk-0.42.1.dist-info/entry_points.txt,sha256=CBdxVD3JfWwRLJsOlSKj5OJh2gY_64rQkyXw5DfNpQ4,930
230
- hatchet_sdk-0.42.1.dist-info/RECORD,,
227
+ hatchet_sdk-0.42.2.dist-info/METADATA,sha256=x9PbjygHgXRlPQHvQia7K4tW0vleTu0kDWkNYA9EcCc,1471
228
+ hatchet_sdk-0.42.2.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
229
+ hatchet_sdk-0.42.2.dist-info/entry_points.txt,sha256=C8jND3wkVr7sT69zNc_YCCT3y1v0VrktuJMRqbPnB8Y,971
230
+ hatchet_sdk-0.42.2.dist-info/RECORD,,
@@ -20,4 +20,5 @@ rate_limit=examples.rate_limit.worker:main
20
20
  retries_with_backoff=examples.retries_with_backoff.worker:main
21
21
  simple=examples.simple.worker:main
22
22
  timeout=examples.timeout.worker:main
23
+ v2_simple=examples.v2.simple.worker:main
23
24