dagstermill 0.23.0__tar.gz → 0.23.2rc1__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.23.0/dagstermill.egg-info → dagstermill-0.23.2rc1}/PKG-INFO +1 -1
  2. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/context.py +8 -0
  3. dagstermill-0.23.2rc1/dagstermill/version.py +1 -0
  4. {dagstermill-0.23.0 → dagstermill-0.23.2rc1/dagstermill.egg-info}/PKG-INFO +1 -1
  5. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill.egg-info/requires.txt +1 -1
  6. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/setup.py +1 -1
  7. dagstermill-0.23.0/dagstermill/version.py +0 -1
  8. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/LICENSE +0 -0
  9. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/MANIFEST.in +0 -0
  10. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/README.md +0 -0
  11. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/__init__.py +0 -0
  12. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/__main__.py +0 -0
  13. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/asset_factory.py +0 -0
  14. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/cli.py +0 -0
  15. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/compat.py +0 -0
  16. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/engine.py +0 -0
  17. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/errors.py +0 -0
  18. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/examples/__init__.py +0 -0
  19. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/examples/repository.py +0 -0
  20. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/factory.py +0 -0
  21. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/io_managers.py +0 -0
  22. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/manager.py +0 -0
  23. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/py.typed +0 -0
  24. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/serialize.py +0 -0
  25. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill/translator.py +0 -0
  26. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill.egg-info/SOURCES.txt +0 -0
  27. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill.egg-info/dependency_links.txt +0 -0
  28. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill.egg-info/entry_points.txt +0 -0
  29. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/dagstermill.egg-info/top_level.txt +0 -0
  30. {dagstermill-0.23.0 → dagstermill-0.23.2rc1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dagstermill
3
- Version: 0.23.0
3
+ Version: 0.23.2rc1
4
4
  Summary: run notebooks using the Dagster tools
5
5
  Author: Dagster Labs
6
6
  Author-email: hello@dagsterlabs.com
@@ -8,6 +8,9 @@ from dagster import (
8
8
  )
9
9
  from dagster._annotations import public
10
10
  from dagster._core.definitions.dependency import Node, NodeHandle
11
+ from dagster._core.definitions.repository_definition.repository_definition import (
12
+ RepositoryDefinition,
13
+ )
11
14
  from dagster._core.execution.context.compute import AbstractComputeExecutionContext
12
15
  from dagster._core.execution.context.system import PlanExecutionContext, StepExecutionContext
13
16
  from dagster._core.log_manager import DagsterLogManager
@@ -100,6 +103,11 @@ class DagstermillExecutionContext(AbstractComputeExecutionContext):
100
103
  """
101
104
  return self._job_def
102
105
 
106
+ @property
107
+ def repository_def(self) -> RepositoryDefinition:
108
+ """:class:`dagster.RepositoryDefinition`: The repository definition for the context."""
109
+ raise NotImplementedError
110
+
103
111
  @property
104
112
  def resources(self) -> Any:
105
113
  """collections.namedtuple: A dynamically-created type whose properties allow access to
@@ -0,0 +1 @@
1
+ __version__ = "0.23.2rc1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dagstermill
3
- Version: 0.23.0
3
+ Version: 0.23.2rc1
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.7.0
1
+ dagster==1.7.2rc1
2
2
  ipykernel!=5.4.0,!=5.4.1,>=4.9.0
3
3
  ipython_genutils>=0.2.0
4
4
  packaging>=20.9
@@ -33,7 +33,7 @@ setup(
33
33
  ],
34
34
  python_requires=">=3.8,<3.13",
35
35
  install_requires=[
36
- "dagster==1.7.0",
36
+ "dagster==1.7.2rc1",
37
37
  # ipykernel 5.4.0 and 5.4.1 broke papermill
38
38
  # see https://github.com/dagster-io/dagster/issues/3401,
39
39
  # https://github.com/nteract/papermill/issues/519,
@@ -1 +0,0 @@
1
- __version__ = "0.23.0"
File without changes
File without changes
File without changes