dagster-sling 0.26.11rc1__tar.gz → 0.26.13__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.26.11rc1/dagster_sling.egg-info → dagster_sling-0.26.13}/PKG-INFO +17 -3
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/__init__.py +2 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/dagster_sling_translator.py +2 -2
- dagster_sling-0.26.13/dagster_sling/version.py +1 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13/dagster_sling.egg-info}/PKG-INFO +17 -3
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling.egg-info/requires.txt +1 -1
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/setup.py +1 -1
- dagster-sling-0.26.11rc1/dagster_sling/version.py +0 -1
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/LICENSE +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/MANIFEST.in +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/README.md +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/asset_decorator.py +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/asset_defs.py +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/components/__init__.py +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/components/sling_replication_collection/__init__.py +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/components/sling_replication_collection/component.py +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/components/sling_replication_collection/scaffolder.py +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/py.typed +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/resources.py +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/sling_event_iterator.py +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/sling_replication.py +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling.egg-info/SOURCES.txt +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling.egg-info/dependency_links.txt +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling.egg-info/entry_points.txt +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling.egg-info/not-zip-safe +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling.egg-info/top_level.txt +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/integration.yaml +0 -0
- {dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: dagster-sling
|
|
3
|
-
Version: 0.26.
|
|
3
|
+
Version: 0.26.13
|
|
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
|
|
@@ -13,5 +13,19 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
13
13
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
15
|
Requires-Python: >=3.9,<3.13
|
|
16
|
-
Provides-Extra: test
|
|
17
16
|
License-File: LICENSE
|
|
17
|
+
Requires-Dist: dagster==1.10.13
|
|
18
|
+
Requires-Dist: sling>=1.1.5
|
|
19
|
+
Requires-Dist: sling-mac-arm64; platform_system == "Darwin" and platform_machine == "arm64"
|
|
20
|
+
Provides-Extra: test
|
|
21
|
+
Requires-Dist: duckdb; extra == "test"
|
|
22
|
+
Dynamic: author
|
|
23
|
+
Dynamic: author-email
|
|
24
|
+
Dynamic: classifier
|
|
25
|
+
Dynamic: home-page
|
|
26
|
+
Dynamic: license
|
|
27
|
+
Dynamic: license-file
|
|
28
|
+
Dynamic: provides-extra
|
|
29
|
+
Dynamic: requires-dist
|
|
30
|
+
Dynamic: requires-python
|
|
31
|
+
Dynamic: summary
|
|
@@ -3,6 +3,7 @@ from dagster_shared.libraries import DagsterLibraryRegistry
|
|
|
3
3
|
from dagster_sling.asset_decorator import sling_assets
|
|
4
4
|
from dagster_sling.components.sling_replication_collection.component import (
|
|
5
5
|
SlingReplicationCollectionComponent,
|
|
6
|
+
SlingReplicationSpecModel,
|
|
6
7
|
)
|
|
7
8
|
from dagster_sling.dagster_sling_translator import DagsterSlingTranslator
|
|
8
9
|
from dagster_sling.resources import SlingConnectionResource, SlingMode, SlingResource
|
|
@@ -15,6 +16,7 @@ __all__ = [
|
|
|
15
16
|
"SlingMode",
|
|
16
17
|
"SlingReplicationCollectionComponent",
|
|
17
18
|
"SlingReplicationParam",
|
|
19
|
+
"SlingReplicationSpecModel",
|
|
18
20
|
"SlingResource",
|
|
19
21
|
"sling_assets",
|
|
20
22
|
]
|
{dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling/dagster_sling_translator.py
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import re
|
|
2
1
|
from collections.abc import Iterable, Mapping
|
|
3
2
|
from dataclasses import dataclass
|
|
4
3
|
from typing import Any, Callable, Optional
|
|
5
4
|
|
|
6
5
|
from dagster import AssetKey, AssetSpec, AutoMaterializePolicy, FreshnessPolicy, MetadataValue
|
|
7
6
|
from dagster._annotations import public, superseded
|
|
7
|
+
from dagster._utils.names import clean_name_lower_with_dots
|
|
8
8
|
from dagster._utils.warnings import supersession_warning
|
|
9
9
|
|
|
10
10
|
|
|
@@ -92,7 +92,7 @@ class DagsterSlingTranslator:
|
|
|
92
92
|
def sanitize_stream_name(self, stream_name: str) -> str:
|
|
93
93
|
return stream_name.replace(".", "")
|
|
94
94
|
"""
|
|
95
|
-
return
|
|
95
|
+
return clean_name_lower_with_dots(name=stream_name.replace('"', ""))
|
|
96
96
|
|
|
97
97
|
@superseded(
|
|
98
98
|
additional_warn_text="Use `DagsterSlingTranslator.get_asset_spec(...).key` instead.",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.26.13"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: dagster-sling
|
|
3
|
-
Version: 0.26.
|
|
3
|
+
Version: 0.26.13
|
|
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
|
|
@@ -13,5 +13,19 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
13
13
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
15
|
Requires-Python: >=3.9,<3.13
|
|
16
|
-
Provides-Extra: test
|
|
17
16
|
License-File: LICENSE
|
|
17
|
+
Requires-Dist: dagster==1.10.13
|
|
18
|
+
Requires-Dist: sling>=1.1.5
|
|
19
|
+
Requires-Dist: sling-mac-arm64; platform_system == "Darwin" and platform_machine == "arm64"
|
|
20
|
+
Provides-Extra: test
|
|
21
|
+
Requires-Dist: duckdb; extra == "test"
|
|
22
|
+
Dynamic: author
|
|
23
|
+
Dynamic: author-email
|
|
24
|
+
Dynamic: classifier
|
|
25
|
+
Dynamic: home-page
|
|
26
|
+
Dynamic: license
|
|
27
|
+
Dynamic: license-file
|
|
28
|
+
Dynamic: provides-extra
|
|
29
|
+
Dynamic: requires-dist
|
|
30
|
+
Dynamic: requires-python
|
|
31
|
+
Dynamic: summary
|
|
@@ -34,7 +34,7 @@ setup(
|
|
|
34
34
|
include_package_data=True,
|
|
35
35
|
python_requires=">=3.9,<3.13",
|
|
36
36
|
install_requires=[
|
|
37
|
-
"dagster==1.10.
|
|
37
|
+
"dagster==1.10.13",
|
|
38
38
|
"sling>=1.1.5",
|
|
39
39
|
# Required due to a bug in uv that can cause sling-linux-amd64 to be installed instead.
|
|
40
40
|
# See: https://github.com/astral-sh/uv/issues/10945
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.26.11rc1"
|
|
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
|
{dagster-sling-0.26.11rc1 → dagster_sling-0.26.13}/dagster_sling.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|