dagstermill 0.25.4rc0__py3-none-any.whl → 0.25.6__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 +6 -6
- dagstermill/version.py +1 -1
- {dagstermill-0.25.4rc0.dist-info → dagstermill-0.25.6.dist-info}/METADATA +2 -2
- {dagstermill-0.25.4rc0.dist-info → dagstermill-0.25.6.dist-info}/RECORD +8 -8
- {dagstermill-0.25.4rc0.dist-info → dagstermill-0.25.6.dist-info}/LICENSE +0 -0
- {dagstermill-0.25.4rc0.dist-info → dagstermill-0.25.6.dist-info}/WHEEL +0 -0
- {dagstermill-0.25.4rc0.dist-info → dagstermill-0.25.6.dist-info}/entry_points.txt +0 -0
- {dagstermill-0.25.4rc0.dist-info → dagstermill-0.25.6.dist-info}/top_level.txt +0 -0
dagstermill/manager.py
CHANGED
|
@@ -311,18 +311,18 @@ class Manager:
|
|
|
311
311
|
# deferred import for perf
|
|
312
312
|
import scrapbook
|
|
313
313
|
|
|
314
|
-
if not self.op_def.has_output(output_name):
|
|
314
|
+
if not self.op_def.has_output(output_name): # pyright: ignore[reportOptionalMemberAccess]
|
|
315
315
|
raise DagstermillError(
|
|
316
|
-
f"Op {self.op_def.name} does not have output named {output_name}.Expected one of"
|
|
317
|
-
f" {[str(output_def.name) for output_def in self.op_def.output_defs]}"
|
|
316
|
+
f"Op {self.op_def.name} does not have output named {output_name}.Expected one of" # pyright: ignore[reportOptionalMemberAccess]
|
|
317
|
+
f" {[str(output_def.name) for output_def in self.op_def.output_defs]}" # pyright: ignore[reportOptionalMemberAccess]
|
|
318
318
|
)
|
|
319
319
|
|
|
320
320
|
# pass output value cross process boundary using io manager
|
|
321
|
-
step_context = self.context._step_context # noqa: SLF001
|
|
321
|
+
step_context = self.context._step_context # noqa: SLF001 # pyright: ignore[reportAttributeAccessIssue,reportOptionalMemberAccess]
|
|
322
322
|
# Note: yield_result currently does not support DynamicOutput
|
|
323
323
|
|
|
324
324
|
# dagstermill assets do not support yielding additional results within the notebook:
|
|
325
|
-
if len(step_context.job_def.asset_layer.executable_asset_keys) > 0:
|
|
325
|
+
if len(step_context.job_def.asset_layer.executable_asset_keys) > 0: # pyright: ignore[reportArgumentType]
|
|
326
326
|
raise DagstermillError(
|
|
327
327
|
"dagstermill assets do not currently support dagstermill.yield_result"
|
|
328
328
|
)
|
|
@@ -369,7 +369,7 @@ class Manager:
|
|
|
369
369
|
import scrapbook
|
|
370
370
|
|
|
371
371
|
event_id = f"event-{uuid.uuid4()}"
|
|
372
|
-
out_file_path = os.path.join(self.marshal_dir, event_id)
|
|
372
|
+
out_file_path = os.path.join(self.marshal_dir, event_id) # pyright: ignore[reportCallIssue,reportArgumentType]
|
|
373
373
|
with open(out_file_path, "wb") as fd:
|
|
374
374
|
fd.write(pickle.dumps(dagster_event, PICKLE_PROTOCOL))
|
|
375
375
|
|
dagstermill/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.25.
|
|
1
|
+
__version__ = "0.25.6"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dagstermill
|
|
3
|
-
Version: 0.25.
|
|
3
|
+
Version: 0.25.6
|
|
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.9.
|
|
15
|
+
Requires-Dist: dagster ==1.9.6
|
|
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=RI1jAWaPR2Hi-r09qRRPHUHxbnUMMys3K63upI7BS6o,5854
|
|
|
8
8
|
dagstermill/errors.py,sha256=WOmpAGp-J1XhyGK_LT3ZZKsBwF5dvrWbqSaSldtoh6Y,141
|
|
9
9
|
dagstermill/factory.py,sha256=gs-Hei2gijrbVc3G2smb_akUVwDTmyItYybZx4Zy8io,18764
|
|
10
10
|
dagstermill/io_managers.py,sha256=D9UA4KufzrOeCan3TJyPogD0uIJBjK80ExikdMHqweI,4403
|
|
11
|
-
dagstermill/manager.py,sha256=
|
|
11
|
+
dagstermill/manager.py,sha256=gJhoqonXcXjN7jWB1P0THMdfRuKoKV7uHKD6ITsTr6o,16130
|
|
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=mgi0NAwnQWP7UdrUf2L9Xln12B8NoCQbqDnalCRZMpE,23
|
|
15
15
|
dagstermill/examples/__init__.py,sha256=_2u28VKkHmd16vz0Q2N7Fw5QKsJ65HEnIfJL26gNUIw,75
|
|
16
16
|
dagstermill/examples/repository.py,sha256=AlBcvZHCqZ4wAGp8YjO67A1STx0FPhBG97vGEjZv3Bw,15858
|
|
17
|
-
dagstermill-0.25.
|
|
18
|
-
dagstermill-0.25.
|
|
19
|
-
dagstermill-0.25.
|
|
20
|
-
dagstermill-0.25.
|
|
21
|
-
dagstermill-0.25.
|
|
22
|
-
dagstermill-0.25.
|
|
17
|
+
dagstermill-0.25.6.dist-info/LICENSE,sha256=TMatHW4_G9ldRdodEAp-l2Xa2WvsdeOh60E3v1R2jis,11349
|
|
18
|
+
dagstermill-0.25.6.dist-info/METADATA,sha256=JmB8ba9pxy8tiZxj5xRRHNgv9iJAXXSzc6P8tq2oils,935
|
|
19
|
+
dagstermill-0.25.6.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
20
|
+
dagstermill-0.25.6.dist-info/entry_points.txt,sha256=885a7vvhABYWEj7W28elkzSmIcKO3REkdd5h4Z4DEJs,53
|
|
21
|
+
dagstermill-0.25.6.dist-info/top_level.txt,sha256=YDelJKdA5YIIrjsObdd8U4E9YhuXJLRe9NKfUzud9Uc,12
|
|
22
|
+
dagstermill-0.25.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|