dagstermill 0.26.3__py3-none-any.whl → 0.26.5__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 dagstermill might be problematic. Click here for more details.
- dagstermill/manager.py +3 -0
- dagstermill/version.py +1 -1
- {dagstermill-0.26.3.dist-info → dagstermill-0.26.5.dist-info}/METADATA +2 -2
- {dagstermill-0.26.3.dist-info → dagstermill-0.26.5.dist-info}/RECORD +8 -8
- {dagstermill-0.26.3.dist-info → dagstermill-0.26.5.dist-info}/LICENSE +0 -0
- {dagstermill-0.26.3.dist-info → dagstermill-0.26.5.dist-info}/WHEEL +0 -0
- {dagstermill-0.26.3.dist-info → dagstermill-0.26.5.dist-info}/entry_points.txt +0 -0
- {dagstermill-0.26.3.dist-info → dagstermill-0.26.5.dist-info}/top_level.txt +0 -0
dagstermill/manager.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import os
|
|
2
2
|
import pickle
|
|
3
3
|
import uuid
|
|
4
|
+
from asyncio import AbstractEventLoop
|
|
4
5
|
from collections.abc import Mapping
|
|
5
6
|
from typing import TYPE_CHECKING, AbstractSet, Any, Optional, cast # noqa: UP035
|
|
6
7
|
|
|
@@ -85,6 +86,7 @@ class Manager:
|
|
|
85
86
|
resource_keys_to_init: Optional[AbstractSet[str]],
|
|
86
87
|
instance: Optional[DagsterInstance],
|
|
87
88
|
emit_persistent_events: Optional[bool],
|
|
89
|
+
event_loop: Optional[AbstractEventLoop],
|
|
88
90
|
):
|
|
89
91
|
"""Drop-in replacement for
|
|
90
92
|
`dagster._core.execution.resources_init.resource_initialization_manager`. It uses a
|
|
@@ -99,6 +101,7 @@ class Manager:
|
|
|
99
101
|
resource_keys_to_init=resource_keys_to_init,
|
|
100
102
|
instance=instance,
|
|
101
103
|
emit_persistent_events=emit_persistent_events,
|
|
104
|
+
event_loop=event_loop,
|
|
102
105
|
)
|
|
103
106
|
self.resource_manager = DagstermillResourceEventGenerationManager(
|
|
104
107
|
generator, ScopedResourcesBuilder
|
dagstermill/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.26.
|
|
1
|
+
__version__ = "0.26.5"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dagstermill
|
|
3
|
-
Version: 0.26.
|
|
3
|
+
Version: 0.26.5
|
|
4
4
|
Summary: run notebooks using the Dagster tools
|
|
5
5
|
Author: Dagster Labs
|
|
6
6
|
Author-email: hello@dagsterlabs.com
|
|
@@ -12,7 +12,7 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
13
|
Requires-Python: >=3.9,<3.13
|
|
14
14
|
License-File: LICENSE
|
|
15
|
-
Requires-Dist: dagster ==1.10.
|
|
15
|
+
Requires-Dist: dagster ==1.10.5
|
|
16
16
|
Requires-Dist: ipykernel !=5.4.0,!=5.4.1,>=4.9.0
|
|
17
17
|
Requires-Dist: ipython-genutils >=0.2.0
|
|
18
18
|
Requires-Dist: packaging >=20.9
|
|
@@ -8,15 +8,15 @@ dagstermill/engine.py,sha256=exxp3VUOKcTWjEOlc0NQZkxeRPmR3JYTFp7BBH5xM7I,5788
|
|
|
8
8
|
dagstermill/errors.py,sha256=WOmpAGp-J1XhyGK_LT3ZZKsBwF5dvrWbqSaSldtoh6Y,141
|
|
9
9
|
dagstermill/factory.py,sha256=vwTygRE1FETR_0L7LVRFa0n-wu99c0YTaLm0jMa_FNc,18842
|
|
10
10
|
dagstermill/io_managers.py,sha256=zRIMpZ_j61942pTttrXdwwkS8Qv20x0r3V0JWf1xnSg,4440
|
|
11
|
-
dagstermill/manager.py,sha256=
|
|
11
|
+
dagstermill/manager.py,sha256=Lt_mNlEuG2xgv2DD410FDMDZBwKJQgEYiyzlg3QH8Ew,16227
|
|
12
12
|
dagstermill/serialize.py,sha256=eXW3c26CiILT_uebyFcAKBnsiNxnjyGT_ch3PfGyjek,188
|
|
13
13
|
dagstermill/translator.py,sha256=h1VPAOWtdjLKzFjRmyN9hO_R6qJuAETNkJydfdgwWGM,2170
|
|
14
|
-
dagstermill/version.py,sha256=
|
|
14
|
+
dagstermill/version.py,sha256=Q5QQA3kVN0Uxvuxo_emQJjjelCa7wzxU2n7kQ-gW-aM,23
|
|
15
15
|
dagstermill/examples/__init__.py,sha256=_2u28VKkHmd16vz0Q2N7Fw5QKsJ65HEnIfJL26gNUIw,75
|
|
16
16
|
dagstermill/examples/repository.py,sha256=AlBcvZHCqZ4wAGp8YjO67A1STx0FPhBG97vGEjZv3Bw,15858
|
|
17
|
-
dagstermill-0.26.
|
|
18
|
-
dagstermill-0.26.
|
|
19
|
-
dagstermill-0.26.
|
|
20
|
-
dagstermill-0.26.
|
|
21
|
-
dagstermill-0.26.
|
|
22
|
-
dagstermill-0.26.
|
|
17
|
+
dagstermill-0.26.5.dist-info/LICENSE,sha256=TMatHW4_G9ldRdodEAp-l2Xa2WvsdeOh60E3v1R2jis,11349
|
|
18
|
+
dagstermill-0.26.5.dist-info/METADATA,sha256=E1FyoRSkr_0Gyfd3-qlcQb1d-2IhtBzzRBSwe7n7IXc,936
|
|
19
|
+
dagstermill-0.26.5.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
20
|
+
dagstermill-0.26.5.dist-info/entry_points.txt,sha256=885a7vvhABYWEj7W28elkzSmIcKO3REkdd5h4Z4DEJs,53
|
|
21
|
+
dagstermill-0.26.5.dist-info/top_level.txt,sha256=YDelJKdA5YIIrjsObdd8U4E9YhuXJLRe9NKfUzud9Uc,12
|
|
22
|
+
dagstermill-0.26.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|