dagstermill 0.24.3__py3-none-any.whl → 0.24.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/__init__.py +8 -7
- dagstermill/__main__.py +1 -1
- dagstermill/engine.py +1 -1
- dagstermill/examples/__init__.py +1 -1
- dagstermill/factory.py +4 -4
- dagstermill/manager.py +3 -3
- dagstermill/version.py +1 -1
- {dagstermill-0.24.3.dist-info → dagstermill-0.24.5.dist-info}/METADATA +2 -2
- dagstermill-0.24.5.dist-info/RECORD +22 -0
- dagstermill-0.24.3.dist-info/RECORD +0 -22
- {dagstermill-0.24.3.dist-info → dagstermill-0.24.5.dist-info}/LICENSE +0 -0
- {dagstermill-0.24.3.dist-info → dagstermill-0.24.5.dist-info}/WHEEL +0 -0
- {dagstermill-0.24.3.dist-info → dagstermill-0.24.5.dist-info}/entry_points.txt +0 -0
- {dagstermill-0.24.3.dist-info → dagstermill-0.24.5.dist-info}/top_level.txt +0 -0
dagstermill/__init__.py
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
from dagster._core.libraries import DagsterLibraryRegistry
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
from .
|
|
5
|
-
from .
|
|
6
|
-
from .
|
|
7
|
-
from .
|
|
3
|
+
import dagstermill.factory as factory # noqa: F401
|
|
4
|
+
from dagstermill.asset_factory import define_dagstermill_asset as define_dagstermill_asset
|
|
5
|
+
from dagstermill.context import DagstermillExecutionContext as DagstermillExecutionContext
|
|
6
|
+
from dagstermill.errors import DagstermillError as DagstermillError
|
|
7
|
+
from dagstermill.factory import define_dagstermill_op as define_dagstermill_op
|
|
8
|
+
from dagstermill.io_managers import (
|
|
8
9
|
ConfigurableLocalOutputNotebookIOManager as ConfigurableLocalOutputNotebookIOManager,
|
|
9
10
|
local_output_notebook_io_manager as local_output_notebook_io_manager,
|
|
10
11
|
)
|
|
11
|
-
from .manager import MANAGER_FOR_NOTEBOOK_INSTANCE as _MANAGER_FOR_NOTEBOOK_INSTANCE
|
|
12
|
-
from .version import __version__ as __version__
|
|
12
|
+
from dagstermill.manager import MANAGER_FOR_NOTEBOOK_INSTANCE as _MANAGER_FOR_NOTEBOOK_INSTANCE
|
|
13
|
+
from dagstermill.version import __version__ as __version__
|
|
13
14
|
|
|
14
15
|
DagsterLibraryRegistry.register("dagstermill", __version__)
|
|
15
16
|
|
dagstermill/__main__.py
CHANGED
dagstermill/engine.py
CHANGED
dagstermill/examples/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
from .repository import notebook_repo as notebook_repo
|
|
1
|
+
from dagstermill.examples.repository import notebook_repo as notebook_repo
|
dagstermill/factory.py
CHANGED
|
@@ -34,10 +34,10 @@ from dagster._utils.error import serializable_error_info_from_exc_info
|
|
|
34
34
|
from papermill.engines import papermill_engines
|
|
35
35
|
from papermill.iorw import load_notebook_node, write_ipynb
|
|
36
36
|
|
|
37
|
-
from .compat import ExecutionError
|
|
38
|
-
from .engine import DagstermillEngine
|
|
39
|
-
from .errors import DagstermillError
|
|
40
|
-
from .translator import DagsterTranslator
|
|
37
|
+
from dagstermill.compat import ExecutionError
|
|
38
|
+
from dagstermill.engine import DagstermillEngine
|
|
39
|
+
from dagstermill.errors import DagstermillError
|
|
40
|
+
from dagstermill.translator import DagsterTranslator
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
def _clean_path_for_windows(notebook_path: str) -> str:
|
dagstermill/manager.py
CHANGED
|
@@ -42,9 +42,9 @@ from dagster._loggers import colored_console_logger
|
|
|
42
42
|
from dagster._serdes import unpack_value
|
|
43
43
|
from dagster._utils import EventGenerationManager
|
|
44
44
|
|
|
45
|
-
from .context import DagstermillExecutionContext, DagstermillRuntimeExecutionContext
|
|
46
|
-
from .errors import DagstermillError
|
|
47
|
-
from .serialize import PICKLE_PROTOCOL
|
|
45
|
+
from dagstermill.context import DagstermillExecutionContext, DagstermillRuntimeExecutionContext
|
|
46
|
+
from dagstermill.errors import DagstermillError
|
|
47
|
+
from dagstermill.serialize import PICKLE_PROTOCOL
|
|
48
48
|
|
|
49
49
|
if TYPE_CHECKING:
|
|
50
50
|
from dagster._core.definitions.node_definition import NodeDefinition
|
dagstermill/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.24.
|
|
1
|
+
__version__ = "0.24.5"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dagstermill
|
|
3
|
-
Version: 0.24.
|
|
3
|
+
Version: 0.24.5
|
|
4
4
|
Summary: run notebooks using the Dagster tools
|
|
5
5
|
Author: Dagster Labs
|
|
6
6
|
Author-email: hello@dagsterlabs.com
|
|
@@ -13,7 +13,7 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
14
|
Requires-Python: >=3.8,<3.13
|
|
15
15
|
License-File: LICENSE
|
|
16
|
-
Requires-Dist: dagster ==1.8.
|
|
16
|
+
Requires-Dist: dagster ==1.8.5
|
|
17
17
|
Requires-Dist: ipykernel !=5.4.0,!=5.4.1,>=4.9.0
|
|
18
18
|
Requires-Dist: ipython-genutils >=0.2.0
|
|
19
19
|
Requires-Dist: packaging >=20.9
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
dagstermill/__init__.py,sha256=3YqU9M3bCTeiof-BEHLmZ-A06HEYxdALfSu1pB9QAeg,1262
|
|
2
|
+
dagstermill/__main__.py,sha256=GqkyStw1mh9zw2gMbQBQpIqW0hpr3I8unVWrw_VqdW8,41
|
|
3
|
+
dagstermill/asset_factory.py,sha256=_or3ENKhrxV2EDQjpbKbv6Sf28aehbthUKEu9VxO53U,9759
|
|
4
|
+
dagstermill/cli.py,sha256=lffeaQgenSR7s8MhNUBNA_BeVehlMUrdg7gnQl1WTdY,4494
|
|
5
|
+
dagstermill/compat.py,sha256=GCfUaGC3eIEhlZP_VFtua8hFKNtwXocOAfYxuKZ5X3I,526
|
|
6
|
+
dagstermill/context.py,sha256=4NwSe11zYhhi35L-uevIZfZlxxoxoVS1Eh4kHS3Yeqs,6117
|
|
7
|
+
dagstermill/engine.py,sha256=RI1jAWaPR2Hi-r09qRRPHUHxbnUMMys3K63upI7BS6o,5854
|
|
8
|
+
dagstermill/errors.py,sha256=WOmpAGp-J1XhyGK_LT3ZZKsBwF5dvrWbqSaSldtoh6Y,141
|
|
9
|
+
dagstermill/factory.py,sha256=-PE8AHS4UZHdWgA9jA0e6_YNx-QusekqVB6LYEUY69s,18781
|
|
10
|
+
dagstermill/io_managers.py,sha256=D9UA4KufzrOeCan3TJyPogD0uIJBjK80ExikdMHqweI,4403
|
|
11
|
+
dagstermill/manager.py,sha256=Vcwhj51tXOz7-OciCDRLmYIIGfDcyHsl5MJ20O-XTkQ,15821
|
|
12
|
+
dagstermill/serialize.py,sha256=eXW3c26CiILT_uebyFcAKBnsiNxnjyGT_ch3PfGyjek,188
|
|
13
|
+
dagstermill/translator.py,sha256=h1VPAOWtdjLKzFjRmyN9hO_R6qJuAETNkJydfdgwWGM,2170
|
|
14
|
+
dagstermill/version.py,sha256=6YOhWuSbeZZXix_MT-DcF-iErMerXY0XS-OBD0tO35s,23
|
|
15
|
+
dagstermill/examples/__init__.py,sha256=_2u28VKkHmd16vz0Q2N7Fw5QKsJ65HEnIfJL26gNUIw,75
|
|
16
|
+
dagstermill/examples/repository.py,sha256=AlBcvZHCqZ4wAGp8YjO67A1STx0FPhBG97vGEjZv3Bw,15858
|
|
17
|
+
dagstermill-0.24.5.dist-info/LICENSE,sha256=TMatHW4_G9ldRdodEAp-l2Xa2WvsdeOh60E3v1R2jis,11349
|
|
18
|
+
dagstermill-0.24.5.dist-info/METADATA,sha256=1k4_CkcQ6WooiZgVkbIU9qmMeSd9tSRkWTUWhxuN5IA,985
|
|
19
|
+
dagstermill-0.24.5.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
20
|
+
dagstermill-0.24.5.dist-info/entry_points.txt,sha256=885a7vvhABYWEj7W28elkzSmIcKO3REkdd5h4Z4DEJs,53
|
|
21
|
+
dagstermill-0.24.5.dist-info/top_level.txt,sha256=YDelJKdA5YIIrjsObdd8U4E9YhuXJLRe9NKfUzud9Uc,12
|
|
22
|
+
dagstermill-0.24.5.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
dagstermill/__init__.py,sha256=WZRYSjL1yAM1w5cqmC1t2T7hvuW-RGGY5tV9vZGHZwU,1133
|
|
2
|
-
dagstermill/__main__.py,sha256=bYt9eEaoRQWdejEHFD8REx9jxVEdZptECFsV7F49Ink,30
|
|
3
|
-
dagstermill/asset_factory.py,sha256=_or3ENKhrxV2EDQjpbKbv6Sf28aehbthUKEu9VxO53U,9759
|
|
4
|
-
dagstermill/cli.py,sha256=lffeaQgenSR7s8MhNUBNA_BeVehlMUrdg7gnQl1WTdY,4494
|
|
5
|
-
dagstermill/compat.py,sha256=GCfUaGC3eIEhlZP_VFtua8hFKNtwXocOAfYxuKZ5X3I,526
|
|
6
|
-
dagstermill/context.py,sha256=4NwSe11zYhhi35L-uevIZfZlxxoxoVS1Eh4kHS3Yeqs,6117
|
|
7
|
-
dagstermill/engine.py,sha256=4CZW-eni4TnG8C8VhPkZZgj6djItdOUKhHPzvaVhaYo,5843
|
|
8
|
-
dagstermill/errors.py,sha256=WOmpAGp-J1XhyGK_LT3ZZKsBwF5dvrWbqSaSldtoh6Y,141
|
|
9
|
-
dagstermill/factory.py,sha256=mfyw85jFGHj60_tx08jRsiauJnVifqgexk1n-Op6760,18737
|
|
10
|
-
dagstermill/io_managers.py,sha256=D9UA4KufzrOeCan3TJyPogD0uIJBjK80ExikdMHqweI,4403
|
|
11
|
-
dagstermill/manager.py,sha256=HPk1PtVOc7MDFb3F3t-XECvhPYRPRAXNBSapXYAIUBA,15788
|
|
12
|
-
dagstermill/serialize.py,sha256=eXW3c26CiILT_uebyFcAKBnsiNxnjyGT_ch3PfGyjek,188
|
|
13
|
-
dagstermill/translator.py,sha256=h1VPAOWtdjLKzFjRmyN9hO_R6qJuAETNkJydfdgwWGM,2170
|
|
14
|
-
dagstermill/version.py,sha256=FVT3zgMnGxhctio1D7Bj2hvIqrqQQ-a9tvDQYKSSekk,23
|
|
15
|
-
dagstermill/examples/__init__.py,sha256=kzan-9zFjxaJ8o9bqUso44gcGiOmJrlq4JYO-yIBQao,55
|
|
16
|
-
dagstermill/examples/repository.py,sha256=AlBcvZHCqZ4wAGp8YjO67A1STx0FPhBG97vGEjZv3Bw,15858
|
|
17
|
-
dagstermill-0.24.3.dist-info/LICENSE,sha256=TMatHW4_G9ldRdodEAp-l2Xa2WvsdeOh60E3v1R2jis,11349
|
|
18
|
-
dagstermill-0.24.3.dist-info/METADATA,sha256=CCbBy5kz_GtBUQd5JBomMw5iTZTv-jcvJ77jAutw8Co,985
|
|
19
|
-
dagstermill-0.24.3.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
20
|
-
dagstermill-0.24.3.dist-info/entry_points.txt,sha256=885a7vvhABYWEj7W28elkzSmIcKO3REkdd5h4Z4DEJs,53
|
|
21
|
-
dagstermill-0.24.3.dist-info/top_level.txt,sha256=YDelJKdA5YIIrjsObdd8U4E9YhuXJLRe9NKfUzud9Uc,12
|
|
22
|
-
dagstermill-0.24.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|