dagster-sling 0.27.8__tar.gz → 0.27.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 dagster-sling might be problematic. Click here for more details.
- {dagster_sling-0.27.8/dagster_sling.egg-info → dagster_sling-0.27.10}/PKG-INFO +2 -2
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling/components/sling_replication_collection/component.py +6 -5
- dagster_sling-0.27.10/dagster_sling/version.py +1 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10/dagster_sling.egg-info}/PKG-INFO +2 -2
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling.egg-info/requires.txt +1 -1
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/setup.py +1 -1
- dagster_sling-0.27.8/dagster_sling/version.py +0 -1
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/LICENSE +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/MANIFEST.in +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/README.md +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling/__init__.py +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling/asset_decorator.py +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling/asset_defs.py +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling/components/__init__.py +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling/components/sling_replication_collection/__init__.py +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling/components/sling_replication_collection/scaffolder.py +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling/dagster_sling_translator.py +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling/py.typed +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling/resources.py +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling/sling_event_iterator.py +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling/sling_replication.py +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling.egg-info/SOURCES.txt +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling.egg-info/dependency_links.txt +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling.egg-info/entry_points.txt +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling.egg-info/not-zip-safe +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/dagster_sling.egg-info/top_level.txt +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/integration.yaml +0 -0
- {dagster_sling-0.27.8 → dagster_sling-0.27.10}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dagster-sling
|
|
3
|
-
Version: 0.27.
|
|
3
|
+
Version: 0.27.10
|
|
4
4
|
Summary: Package for performing ETL/ELT tasks with Sling in Dagster.
|
|
5
5
|
Home-page: https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-sling
|
|
6
6
|
Author: Dagster Labs
|
|
@@ -15,7 +15,7 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
16
|
Requires-Python: >=3.9,<3.14
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: dagster==1.11.
|
|
18
|
+
Requires-Dist: dagster==1.11.10
|
|
19
19
|
Requires-Dist: sling>=1.1.5
|
|
20
20
|
Requires-Dist: sling-mac-arm64; platform_system == "Darwin" and platform_machine == "arm64"
|
|
21
21
|
Provides-Extra: test
|
|
@@ -5,6 +5,7 @@ from pathlib import Path
|
|
|
5
5
|
from typing import Annotated, Any, Literal, Optional, Union
|
|
6
6
|
|
|
7
7
|
from dagster import Resolvable, Resolver
|
|
8
|
+
from dagster._annotations import public
|
|
8
9
|
from dagster._core.definitions.assets.definition.asset_spec import AssetSpec
|
|
9
10
|
from dagster._core.definitions.assets.definition.assets_definition import AssetsDefinition
|
|
10
11
|
from dagster._core.definitions.definitions_class import Definitions
|
|
@@ -122,18 +123,18 @@ ResolvedSlingConnections: TypeAlias = Annotated[
|
|
|
122
123
|
]
|
|
123
124
|
|
|
124
125
|
|
|
126
|
+
@public
|
|
125
127
|
@scaffold_with(SlingReplicationComponentScaffolder)
|
|
126
128
|
@dataclass
|
|
127
129
|
class SlingReplicationCollectionComponent(Component, Resolvable):
|
|
128
130
|
"""Expose one or more Sling replications to Dagster as assets.
|
|
129
131
|
|
|
130
|
-
|
|
131
|
-
operations as well as quality checks across files, databases, and storage systems.
|
|
132
|
+
To get started, run:
|
|
132
133
|
|
|
133
|
-
dg scaffold dagster_sling.SlingReplicationCollectionComponent {defs_path}
|
|
134
|
+
``dg scaffold defs dagster_sling.SlingReplicationCollectionComponent {defs_path}``
|
|
134
135
|
|
|
135
|
-
This will create a defs.yaml as well as a
|
|
136
|
-
file. See Sling's
|
|
136
|
+
This will create a defs.yaml as well as a ``replication.yaml``, which is a Sling-specific configuration
|
|
137
|
+
file. See Sling's `documentation <https://docs.slingdata.io/concepts/replication#overview>`_ on ``replication.yaml``.
|
|
137
138
|
"""
|
|
138
139
|
|
|
139
140
|
connections: ResolvedSlingConnections = field(default_factory=list)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.27.10"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dagster-sling
|
|
3
|
-
Version: 0.27.
|
|
3
|
+
Version: 0.27.10
|
|
4
4
|
Summary: Package for performing ETL/ELT tasks with Sling in Dagster.
|
|
5
5
|
Home-page: https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-sling
|
|
6
6
|
Author: Dagster Labs
|
|
@@ -15,7 +15,7 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
16
|
Requires-Python: >=3.9,<3.14
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: dagster==1.11.
|
|
18
|
+
Requires-Dist: dagster==1.11.10
|
|
19
19
|
Requires-Dist: sling>=1.1.5
|
|
20
20
|
Requires-Dist: sling-mac-arm64; platform_system == "Darwin" and platform_machine == "arm64"
|
|
21
21
|
Provides-Extra: test
|
|
@@ -35,7 +35,7 @@ setup(
|
|
|
35
35
|
include_package_data=True,
|
|
36
36
|
python_requires=">=3.9,<3.14",
|
|
37
37
|
install_requires=[
|
|
38
|
-
"dagster==1.11.
|
|
38
|
+
"dagster==1.11.10",
|
|
39
39
|
"sling>=1.1.5",
|
|
40
40
|
# Required due to a bug in uv that can cause sling-linux-amd64 to be installed instead.
|
|
41
41
|
# See: https://github.com/astral-sh/uv/issues/10945
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.27.8"
|
|
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
|