dagstermill 0.25.5__tar.gz → 0.25.6__tar.gz

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.

Files changed (30) hide show
  1. {dagstermill-0.25.5/dagstermill.egg-info → dagstermill-0.25.6}/PKG-INFO +1 -1
  2. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/manager.py +6 -6
  3. dagstermill-0.25.6/dagstermill/version.py +1 -0
  4. {dagstermill-0.25.5 → dagstermill-0.25.6/dagstermill.egg-info}/PKG-INFO +1 -1
  5. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill.egg-info/requires.txt +1 -1
  6. {dagstermill-0.25.5 → dagstermill-0.25.6}/setup.py +1 -1
  7. dagstermill-0.25.5/dagstermill/version.py +0 -1
  8. {dagstermill-0.25.5 → dagstermill-0.25.6}/LICENSE +0 -0
  9. {dagstermill-0.25.5 → dagstermill-0.25.6}/MANIFEST.in +0 -0
  10. {dagstermill-0.25.5 → dagstermill-0.25.6}/README.md +0 -0
  11. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/__init__.py +0 -0
  12. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/__main__.py +0 -0
  13. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/asset_factory.py +0 -0
  14. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/cli.py +0 -0
  15. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/compat.py +0 -0
  16. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/context.py +0 -0
  17. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/engine.py +0 -0
  18. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/errors.py +0 -0
  19. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/examples/__init__.py +0 -0
  20. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/examples/repository.py +0 -0
  21. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/factory.py +0 -0
  22. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/io_managers.py +0 -0
  23. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/py.typed +0 -0
  24. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/serialize.py +0 -0
  25. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill/translator.py +0 -0
  26. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill.egg-info/SOURCES.txt +0 -0
  27. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill.egg-info/dependency_links.txt +0 -0
  28. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill.egg-info/entry_points.txt +0 -0
  29. {dagstermill-0.25.5 → dagstermill-0.25.6}/dagstermill.egg-info/top_level.txt +0 -0
  30. {dagstermill-0.25.5 → dagstermill-0.25.6}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dagstermill
3
- Version: 0.25.5
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
@@ -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
 
@@ -0,0 +1 @@
1
+ __version__ = "0.25.6"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dagstermill
3
- Version: 0.25.5
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
@@ -1,4 +1,4 @@
1
- dagster==1.9.5
1
+ dagster==1.9.6
2
2
  ipykernel!=5.4.0,!=5.4.1,>=4.9.0
3
3
  ipython_genutils>=0.2.0
4
4
  packaging>=20.9
@@ -32,7 +32,7 @@ setup(
32
32
  ],
33
33
  python_requires=">=3.9,<3.13",
34
34
  install_requires=[
35
- "dagster==1.9.5",
35
+ "dagster==1.9.6",
36
36
  # ipykernel 5.4.0 and 5.4.1 broke papermill
37
37
  # see https://github.com/dagster-io/dagster/issues/3401,
38
38
  # https://github.com/nteract/papermill/issues/519,
@@ -1 +0,0 @@
1
- __version__ = "0.25.5"
File without changes
File without changes
File without changes
File without changes