dagstermill 0.19.9__tar.gz → 0.19.10__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.19.9/dagstermill.egg-info → dagstermill-0.19.10}/PKG-INFO +1 -1
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/io_managers.py +6 -1
- dagstermill-0.19.10/dagstermill/version.py +1 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10/dagstermill.egg-info}/PKG-INFO +1 -1
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill.egg-info/requires.txt +1 -1
- {dagstermill-0.19.9 → dagstermill-0.19.10}/setup.py +1 -1
- dagstermill-0.19.9/dagstermill/version.py +0 -1
- {dagstermill-0.19.9 → dagstermill-0.19.10}/LICENSE +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/MANIFEST.in +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/README.md +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/__init__.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/__main__.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/asset_factory.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/cli.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/compat.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/context.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/engine.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/errors.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/examples/__init__.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/examples/repository.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/factory.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/manager.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/py.typed +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/serialize.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill/translator.py +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill.egg-info/SOURCES.txt +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill.egg-info/dependency_links.txt +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill.egg-info/entry_points.txt +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/dagstermill.egg-info/top_level.txt +0 -0
- {dagstermill-0.19.9 → dagstermill-0.19.10}/setup.cfg +0 -0
|
@@ -13,7 +13,7 @@ from dagster import (
|
|
|
13
13
|
from dagster._core.definitions.metadata import MetadataValue
|
|
14
14
|
from dagster._core.execution.context.input import InputContext
|
|
15
15
|
from dagster._core.execution.context.output import OutputContext
|
|
16
|
-
from dagster._core.storage.io_manager import io_manager
|
|
16
|
+
from dagster._core.storage.io_manager import dagster_maintained_io_manager, io_manager
|
|
17
17
|
from dagster._utils import mkdir_p
|
|
18
18
|
from pydantic import Field
|
|
19
19
|
|
|
@@ -100,6 +100,10 @@ class ConfigurableLocalOutputNotebookIOManager(ConfigurableIOManagerFactory):
|
|
|
100
100
|
),
|
|
101
101
|
)
|
|
102
102
|
|
|
103
|
+
@classmethod
|
|
104
|
+
def _is_dagster_maintained(cls) -> bool:
|
|
105
|
+
return True
|
|
106
|
+
|
|
103
107
|
def create_io_manager(self, context: InitResourceContext) -> "LocalOutputNotebookIOManager":
|
|
104
108
|
return LocalOutputNotebookIOManager(
|
|
105
109
|
base_dir=self.base_dir or check.not_none(context.instance).storage_directory(),
|
|
@@ -107,6 +111,7 @@ class ConfigurableLocalOutputNotebookIOManager(ConfigurableIOManagerFactory):
|
|
|
107
111
|
)
|
|
108
112
|
|
|
109
113
|
|
|
114
|
+
@dagster_maintained_io_manager
|
|
110
115
|
@io_manager(config_schema=ConfigurableLocalOutputNotebookIOManager.to_config_schema())
|
|
111
116
|
def local_output_notebook_io_manager(init_context) -> LocalOutputNotebookIOManager:
|
|
112
117
|
"""Built-in IO Manager that handles output notebooks."""
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.19.10"
|
|
@@ -33,7 +33,7 @@ setup(
|
|
|
33
33
|
"Operating System :: OS Independent",
|
|
34
34
|
],
|
|
35
35
|
install_requires=[
|
|
36
|
-
"dagster==1.3.
|
|
36
|
+
"dagster==1.3.10",
|
|
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.19.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
|
|
File without changes
|
|
File without changes
|