dagstermill 0.26.9__tar.gz → 0.26.11__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.
- {dagstermill-0.26.9/dagstermill.egg-info → dagstermill-0.26.11}/PKG-INFO +1 -1
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/asset_factory.py +1 -1
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/context.py +2 -2
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/factory.py +2 -2
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/manager.py +3 -3
- dagstermill-0.26.11/dagstermill/version.py +1 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11/dagstermill.egg-info}/PKG-INFO +1 -1
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill.egg-info/requires.txt +1 -1
- {dagstermill-0.26.9 → dagstermill-0.26.11}/setup.py +1 -1
- dagstermill-0.26.9/dagstermill/version.py +0 -1
- {dagstermill-0.26.9 → dagstermill-0.26.11}/LICENSE +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/MANIFEST.in +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/README.md +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/__init__.py +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/__main__.py +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/cli.py +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/compat.py +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/engine.py +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/errors.py +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/examples/__init__.py +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/examples/repository.py +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/io_managers.py +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/py.typed +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/serialize.py +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/test_utils.py +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill/translator.py +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill.egg-info/SOURCES.txt +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill.egg-info/dependency_links.txt +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill.egg-info/entry_points.txt +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/dagstermill.egg-info/top_level.txt +0 -0
- {dagstermill-0.26.9 → dagstermill-0.26.11}/setup.cfg +0 -0
|
@@ -198,7 +198,7 @@ def define_dagstermill_asset(
|
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
if safe_is_subclass(config_schema, Config):
|
|
201
|
-
config_schema = infer_schema_from_config_class(cast(type[Config], config_schema))
|
|
201
|
+
config_schema = infer_schema_from_config_class(cast("type[Config]", config_schema))
|
|
202
202
|
|
|
203
203
|
return asset(
|
|
204
204
|
name=name,
|
|
@@ -123,7 +123,7 @@ class DagstermillExecutionContext(AbstractComputeExecutionContext):
|
|
|
123
123
|
@property
|
|
124
124
|
def run(self) -> DagsterRun:
|
|
125
125
|
""":class:`dagster.DagsterRun`: The job run for the context."""
|
|
126
|
-
return cast(DagsterRun, self._job_context.dagster_run)
|
|
126
|
+
return cast("DagsterRun", self._job_context.dagster_run)
|
|
127
127
|
|
|
128
128
|
@property
|
|
129
129
|
def log(self) -> DagsterLogManager:
|
|
@@ -141,7 +141,7 @@ class DagstermillExecutionContext(AbstractComputeExecutionContext):
|
|
|
141
141
|
In interactive contexts, this may be a dagstermill-specific shim, depending whether an
|
|
142
142
|
op definition was passed to ``dagstermill.get_context``.
|
|
143
143
|
"""
|
|
144
|
-
return cast(OpDefinition, self._job_def.node_def_named(self.op_name))
|
|
144
|
+
return cast("OpDefinition", self._job_def.node_def_named(self.op_name))
|
|
145
145
|
|
|
146
146
|
@property
|
|
147
147
|
def node(self) -> Node:
|
|
@@ -408,7 +408,7 @@ def define_dagstermill_op(
|
|
|
408
408
|
required_resource_keys.add(io_mgr_key)
|
|
409
409
|
outs = {
|
|
410
410
|
**outs,
|
|
411
|
-
cast(str, output_notebook_name): Out(io_manager_key=io_mgr_key),
|
|
411
|
+
cast("str", output_notebook_name): Out(io_manager_key=io_mgr_key),
|
|
412
412
|
}
|
|
413
413
|
|
|
414
414
|
if isinstance(asset_key_prefix, str):
|
|
@@ -437,7 +437,7 @@ def define_dagstermill_op(
|
|
|
437
437
|
}
|
|
438
438
|
|
|
439
439
|
if safe_is_subclass(config_schema, Config):
|
|
440
|
-
config_schema = infer_schema_from_config_class(cast(type[Config], config_schema))
|
|
440
|
+
config_schema = infer_schema_from_config_class(cast("type[Config]", config_schema))
|
|
441
441
|
|
|
442
442
|
return OpDefinition(
|
|
443
443
|
name=name,
|
|
@@ -30,7 +30,6 @@ from dagster._core.execution.api import create_execution_plan, scoped_job_contex
|
|
|
30
30
|
from dagster._core.execution.plan.outputs import StepOutputHandle
|
|
31
31
|
from dagster._core.execution.plan.plan import ExecutionPlan
|
|
32
32
|
from dagster._core.execution.plan.state import KnownExecutionState
|
|
33
|
-
from dagster._core.execution.plan.step import ExecutionStep
|
|
34
33
|
from dagster._core.execution.resources_init import (
|
|
35
34
|
get_required_resource_keys_to_init,
|
|
36
35
|
resource_initialization_event_generator,
|
|
@@ -51,6 +50,7 @@ from dagstermill.serialize import PICKLE_PROTOCOL
|
|
|
51
50
|
|
|
52
51
|
if TYPE_CHECKING:
|
|
53
52
|
from dagster._core.definitions.node_definition import NodeDefinition
|
|
53
|
+
from dagster._core.execution.plan.step import ExecutionStep
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
class DagstermillResourceEventGenerationManager(EventGenerationManager):
|
|
@@ -196,9 +196,9 @@ class Manager:
|
|
|
196
196
|
op_name=op.name,
|
|
197
197
|
node_handle=node_handle,
|
|
198
198
|
step_context=cast(
|
|
199
|
-
StepExecutionContext,
|
|
199
|
+
"StepExecutionContext",
|
|
200
200
|
job_context.for_step(
|
|
201
|
-
cast(ExecutionStep, execution_plan.get_step_by_key(step_key)),
|
|
201
|
+
cast("ExecutionStep", execution_plan.get_step_by_key(step_key)),
|
|
202
202
|
known_state=known_state,
|
|
203
203
|
),
|
|
204
204
|
),
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.26.11"
|
|
@@ -31,7 +31,7 @@ setup(
|
|
|
31
31
|
],
|
|
32
32
|
python_requires=">=3.9,<3.13",
|
|
33
33
|
install_requires=[
|
|
34
|
-
"dagster==1.10.
|
|
34
|
+
"dagster==1.10.11",
|
|
35
35
|
# ipykernel 5.4.0 and 5.4.1 broke papermill
|
|
36
36
|
# see https://github.com/dagster-io/dagster/issues/3401,
|
|
37
37
|
# https://github.com/nteract/papermill/issues/519,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.26.9"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|