dagstermill 0.22.6__tar.gz → 0.22.8__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.22.6/dagstermill.egg-info → dagstermill-0.22.8}/PKG-INFO +2 -1
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/examples/repository.py +2 -2
- dagstermill-0.22.8/dagstermill/version.py +1 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8/dagstermill.egg-info}/PKG-INFO +2 -1
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill.egg-info/requires.txt +1 -1
- {dagstermill-0.22.6 → dagstermill-0.22.8}/setup.py +2 -1
- dagstermill-0.22.6/dagstermill/version.py +0 -1
- {dagstermill-0.22.6 → dagstermill-0.22.8}/LICENSE +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/MANIFEST.in +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/README.md +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/__init__.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/__main__.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/asset_factory.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/cli.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/compat.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/context.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/engine.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/errors.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/examples/__init__.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/factory.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/io_managers.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/manager.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/py.typed +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/serialize.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill/translator.py +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill.egg-info/SOURCES.txt +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill.egg-info/dependency_links.txt +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill.egg-info/entry_points.txt +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/dagstermill.egg-info/top_level.txt +0 -0
- {dagstermill-0.22.6 → dagstermill-0.22.8}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dagstermill
|
|
3
|
-
Version: 0.22.
|
|
3
|
+
Version: 0.22.8
|
|
4
4
|
Summary: run notebooks using the Dagster tools
|
|
5
5
|
Author: Dagster Labs
|
|
6
6
|
Author-email: hello@dagsterlabs.com
|
|
@@ -11,5 +11,6 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
12
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
|
+
Requires-Python: >=3.8,<3.13
|
|
14
15
|
Provides-Extra: test
|
|
15
16
|
License-File: LICENSE
|
|
@@ -23,7 +23,7 @@ from dagster import (
|
|
|
23
23
|
with_resources,
|
|
24
24
|
)
|
|
25
25
|
from dagster._config.pythonic_config import Config
|
|
26
|
-
from dagster._core.definitions.
|
|
26
|
+
from dagster._core.definitions.internal_asset_graph import InternalAssetGraph
|
|
27
27
|
from dagster._core.definitions.utils import DEFAULT_OUTPUT
|
|
28
28
|
from dagster._utils import PICKLE_PROTOCOL, file_relative_path
|
|
29
29
|
|
|
@@ -604,7 +604,7 @@ assets = with_resources(
|
|
|
604
604
|
def make_resolved_job(asset):
|
|
605
605
|
return define_asset_job(
|
|
606
606
|
name=f"{asset.key.to_user_string()}_job", selection=AssetSelection.assets(asset).upstream()
|
|
607
|
-
).resolve(asset_graph=
|
|
607
|
+
).resolve(asset_graph=InternalAssetGraph.from_assets(assets))
|
|
608
608
|
|
|
609
609
|
|
|
610
610
|
hello_world_asset_job = make_resolved_job(hello_world_asset)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.22.8"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dagstermill
|
|
3
|
-
Version: 0.22.
|
|
3
|
+
Version: 0.22.8
|
|
4
4
|
Summary: run notebooks using the Dagster tools
|
|
5
5
|
Author: Dagster Labs
|
|
6
6
|
Author-email: hello@dagsterlabs.com
|
|
@@ -11,5 +11,6 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
12
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
|
+
Requires-Python: >=3.8,<3.13
|
|
14
15
|
Provides-Extra: test
|
|
15
16
|
License-File: LICENSE
|
|
@@ -31,8 +31,9 @@ setup(
|
|
|
31
31
|
"License :: OSI Approved :: Apache Software License",
|
|
32
32
|
"Operating System :: OS Independent",
|
|
33
33
|
],
|
|
34
|
+
python_requires=">=3.8,<3.13",
|
|
34
35
|
install_requires=[
|
|
35
|
-
"dagster==1.6.
|
|
36
|
+
"dagster==1.6.8",
|
|
36
37
|
# ipykernel 5.4.0 and 5.4.1 broke papermill
|
|
37
38
|
# see https://github.com/dagster-io/dagster/issues/3401,
|
|
38
39
|
# https://github.com/nteract/papermill/issues/519,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.22.6"
|
|
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
|