dagster-dg-cli 1.12.7__py3-none-any.whl → 1.12.9__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.
- dagster_dg_cli/cli/plus/deploy/commands.py +3 -2
- dagster_dg_cli/cli/plus/deploy/configure/commands.py +42 -5
- dagster_dg_cli/cli/plus/deploy/configure/configure_ci.py +8 -0
- dagster_dg_cli/cli/plus/deploy/configure/utils.py +1 -0
- dagster_dg_cli/cli/plus/login.py +18 -2
- dagster_dg_cli/cli/scaffold/build_artifacts.py +4 -2
- dagster_dg_cli/cli/scaffold/github_actions.py +4 -1
- dagster_dg_cli/templates/hybrid-github-action.yaml +3 -1
- dagster_dg_cli/templates/hybrid-gitlab-ci.yaml +2 -0
- dagster_dg_cli/templates/serverless-github-action.yaml +3 -1
- dagster_dg_cli/templates/serverless-gitlab-ci.yaml +2 -0
- dagster_dg_cli/version.py +1 -1
- {dagster_dg_cli-1.12.7.dist-info → dagster_dg_cli-1.12.9.dist-info}/METADATA +4 -4
- {dagster_dg_cli-1.12.7.dist-info → dagster_dg_cli-1.12.9.dist-info}/RECORD +18 -18
- {dagster_dg_cli-1.12.7.dist-info → dagster_dg_cli-1.12.9.dist-info}/WHEEL +0 -0
- {dagster_dg_cli-1.12.7.dist-info → dagster_dg_cli-1.12.9.dist-info}/entry_points.txt +0 -0
- {dagster_dg_cli-1.12.7.dist-info → dagster_dg_cli-1.12.9.dist-info}/licenses/LICENSE +0 -0
- {dagster_dg_cli-1.12.7.dist-info → dagster_dg_cli-1.12.9.dist-info}/top_level.txt +0 -0
|
@@ -8,6 +8,7 @@ from typing import TYPE_CHECKING, Optional
|
|
|
8
8
|
|
|
9
9
|
import click
|
|
10
10
|
from dagster_cloud_cli.types import SnapshotBaseDeploymentCondition
|
|
11
|
+
from dagster_cloud_cli.utils import SUPPORTED_PYTHON_VERSIONS
|
|
11
12
|
from dagster_dg_core.config import DgRawCliConfig, normalize_cli_config
|
|
12
13
|
from dagster_dg_core.context import DgContext
|
|
13
14
|
from dagster_dg_core.shared_options import (
|
|
@@ -95,7 +96,7 @@ org_and_deploy_option_group = make_option_group(
|
|
|
95
96
|
@click.option(
|
|
96
97
|
"--python-version",
|
|
97
98
|
"python_version",
|
|
98
|
-
type=click.Choice(
|
|
99
|
+
type=click.Choice(SUPPORTED_PYTHON_VERSIONS),
|
|
99
100
|
help=(
|
|
100
101
|
"Python version used to deploy the project. If not set, defaults to the calling process's Python minor version."
|
|
101
102
|
),
|
|
@@ -341,7 +342,7 @@ def start_deploy_session_command(
|
|
|
341
342
|
@click.option(
|
|
342
343
|
"--python-version",
|
|
343
344
|
"python_version",
|
|
344
|
-
type=click.Choice(
|
|
345
|
+
type=click.Choice(SUPPORTED_PYTHON_VERSIONS),
|
|
345
346
|
help=(
|
|
346
347
|
"Python version used to deploy the project. If not set, defaults to the calling process's Python minor version."
|
|
347
348
|
),
|
|
@@ -9,12 +9,13 @@ from pathlib import Path
|
|
|
9
9
|
from typing import Optional
|
|
10
10
|
|
|
11
11
|
import click
|
|
12
|
+
from dagster_cloud_cli.utils import SUPPORTED_PYTHON_VERSIONS
|
|
12
13
|
from dagster_dg_core.config import normalize_cli_config
|
|
13
14
|
from dagster_dg_core.context import DgContext
|
|
14
15
|
from dagster_dg_core.shared_options import dg_editable_dagster_options, dg_global_options
|
|
15
16
|
from dagster_dg_core.utils import DgClickCommand, DgClickGroup, exit_with_error
|
|
16
17
|
from dagster_dg_core.utils.telemetry import cli_telemetry_wrapper
|
|
17
|
-
from dagster_shared.plus.config import DagsterPlusCliConfig
|
|
18
|
+
from dagster_shared.plus.config import DAGSTER_CLOUD_BASE_URL, DagsterPlusCliConfig
|
|
18
19
|
|
|
19
20
|
from dagster_dg_cli.cli.plus.constants import DgPlusAgentPlatform, DgPlusAgentType
|
|
20
21
|
from dagster_dg_cli.cli.plus.deploy.configure.configure_build_artifacts import (
|
|
@@ -71,7 +72,7 @@ def resolve_organization(
|
|
|
71
72
|
plus_config: Optional[DagsterPlusCliConfig],
|
|
72
73
|
*,
|
|
73
74
|
show_detected_message: bool = True,
|
|
74
|
-
) ->
|
|
75
|
+
) -> str:
|
|
75
76
|
"""Resolve organization name from config or prompt."""
|
|
76
77
|
if organization is not None:
|
|
77
78
|
return organization
|
|
@@ -86,6 +87,25 @@ def resolve_organization(
|
|
|
86
87
|
return click.prompt("Dagster Plus organization name") or ""
|
|
87
88
|
|
|
88
89
|
|
|
90
|
+
def resolve_url(
|
|
91
|
+
url: Optional[str],
|
|
92
|
+
plus_config: Optional[DagsterPlusCliConfig],
|
|
93
|
+
resolved_organization: str,
|
|
94
|
+
*,
|
|
95
|
+
show_detected_message: bool = True,
|
|
96
|
+
) -> str:
|
|
97
|
+
"""Resolve Dagster Cloud URL from config or use default."""
|
|
98
|
+
if url is not None:
|
|
99
|
+
return url
|
|
100
|
+
|
|
101
|
+
if plus_config and plus_config.url:
|
|
102
|
+
if show_detected_message:
|
|
103
|
+
click.echo(f"Using Dagster Cloud URL {plus_config.url} from Dagster Plus config.")
|
|
104
|
+
return plus_config.url
|
|
105
|
+
|
|
106
|
+
return f"{DAGSTER_CLOUD_BASE_URL}/{resolved_organization}"
|
|
107
|
+
|
|
108
|
+
|
|
89
109
|
def resolve_deployment(
|
|
90
110
|
deployment: Optional[str],
|
|
91
111
|
plus_config: Optional[DagsterPlusCliConfig],
|
|
@@ -160,6 +180,7 @@ def _resolve_config_with_prompts(
|
|
|
160
180
|
agent_type: Optional[DgPlusAgentType],
|
|
161
181
|
agent_platform: Optional[DgPlusAgentPlatform],
|
|
162
182
|
organization: Optional[str],
|
|
183
|
+
url: Optional[str],
|
|
163
184
|
deployment: Optional[str],
|
|
164
185
|
git_root: Optional[Path],
|
|
165
186
|
python_version: Optional[str],
|
|
@@ -191,11 +212,13 @@ def _resolve_config_with_prompts(
|
|
|
191
212
|
git_root,
|
|
192
213
|
)
|
|
193
214
|
|
|
194
|
-
# Resolve organization and deployment (only needed if scaffolding CI/CD)
|
|
215
|
+
# Resolve organization, URL, and deployment (only needed if scaffolding CI/CD)
|
|
195
216
|
resolved_organization = None
|
|
217
|
+
resolved_url = None
|
|
196
218
|
resolved_deployment = deployment or "prod"
|
|
197
219
|
if resolved_git_provider is not None:
|
|
198
220
|
resolved_organization = resolve_organization(organization, plus_config)
|
|
221
|
+
resolved_url = resolve_url(url, plus_config, resolved_organization)
|
|
199
222
|
resolved_deployment = resolve_deployment(deployment, plus_config)
|
|
200
223
|
|
|
201
224
|
# Resolve git root
|
|
@@ -222,6 +245,7 @@ def _resolve_config_with_prompts(
|
|
|
222
245
|
agent_type=resolved_agent_type,
|
|
223
246
|
agent_platform=resolved_agent_platform,
|
|
224
247
|
organization_name=resolved_organization,
|
|
248
|
+
cloud_url=resolved_url,
|
|
225
249
|
deployment_name=resolved_deployment,
|
|
226
250
|
git_root=resolved_git_root,
|
|
227
251
|
python_version=resolved_python_version,
|
|
@@ -273,6 +297,7 @@ def deploy_configure_group(
|
|
|
273
297
|
agent_type=None,
|
|
274
298
|
agent_platform=None,
|
|
275
299
|
organization=None,
|
|
300
|
+
url=None,
|
|
276
301
|
deployment=None,
|
|
277
302
|
git_root=None,
|
|
278
303
|
python_version=None,
|
|
@@ -296,13 +321,17 @@ def deploy_configure_group(
|
|
|
296
321
|
)
|
|
297
322
|
@click.option(
|
|
298
323
|
"--python-version",
|
|
299
|
-
type=click.Choice(
|
|
324
|
+
type=click.Choice(SUPPORTED_PYTHON_VERSIONS),
|
|
300
325
|
help="Python version used to deploy the project",
|
|
301
326
|
)
|
|
302
327
|
@click.option(
|
|
303
328
|
"--organization",
|
|
304
329
|
help="Dagster Plus organization name",
|
|
305
330
|
)
|
|
331
|
+
@click.option(
|
|
332
|
+
"--url",
|
|
333
|
+
help="Dagster Plus URL for the organization",
|
|
334
|
+
)
|
|
306
335
|
@click.option(
|
|
307
336
|
"--deployment",
|
|
308
337
|
default="prod",
|
|
@@ -332,6 +361,7 @@ def deploy_configure_serverless(
|
|
|
332
361
|
git_provider: Optional[str],
|
|
333
362
|
python_version: Optional[str],
|
|
334
363
|
organization: Optional[str],
|
|
364
|
+
url: Optional[str],
|
|
335
365
|
deployment: Optional[str],
|
|
336
366
|
git_root: Optional[Path],
|
|
337
367
|
pex_deploy: bool,
|
|
@@ -352,6 +382,7 @@ def deploy_configure_serverless(
|
|
|
352
382
|
agent_type=DgPlusAgentType.SERVERLESS,
|
|
353
383
|
agent_platform=None,
|
|
354
384
|
organization=organization,
|
|
385
|
+
url=url,
|
|
355
386
|
deployment=deployment,
|
|
356
387
|
git_root=git_root,
|
|
357
388
|
python_version=python_version,
|
|
@@ -384,13 +415,17 @@ def deploy_configure_serverless(
|
|
|
384
415
|
)
|
|
385
416
|
@click.option(
|
|
386
417
|
"--python-version",
|
|
387
|
-
type=click.Choice(
|
|
418
|
+
type=click.Choice(SUPPORTED_PYTHON_VERSIONS),
|
|
388
419
|
help="Python version used to deploy the project",
|
|
389
420
|
)
|
|
390
421
|
@click.option(
|
|
391
422
|
"--organization",
|
|
392
423
|
help="Dagster Plus organization name",
|
|
393
424
|
)
|
|
425
|
+
@click.option(
|
|
426
|
+
"--url",
|
|
427
|
+
help="Dagster Cloud URL (defaults to https://dagster.cloud)",
|
|
428
|
+
)
|
|
394
429
|
@click.option(
|
|
395
430
|
"--deployment",
|
|
396
431
|
default="prod",
|
|
@@ -417,6 +452,7 @@ def deploy_configure_hybrid(
|
|
|
417
452
|
registry_url: Optional[str],
|
|
418
453
|
python_version: Optional[str],
|
|
419
454
|
organization: Optional[str],
|
|
455
|
+
url: Optional[str],
|
|
420
456
|
deployment: Optional[str],
|
|
421
457
|
git_root: Optional[Path],
|
|
422
458
|
skip_confirmation_prompt: bool,
|
|
@@ -440,6 +476,7 @@ def deploy_configure_hybrid(
|
|
|
440
476
|
agent_type=DgPlusAgentType.HYBRID,
|
|
441
477
|
agent_platform=resolved_platform,
|
|
442
478
|
organization=organization,
|
|
479
|
+
url=url,
|
|
443
480
|
deployment=deployment,
|
|
444
481
|
git_root=git_root,
|
|
445
482
|
python_version=python_version,
|
|
@@ -129,6 +129,10 @@ def configure_github_actions_impl(config: DgPlusDeployConfigureOptions) -> None:
|
|
|
129
129
|
"TEMPLATE_ORGANIZATION_NAME",
|
|
130
130
|
config.organization_name or "",
|
|
131
131
|
)
|
|
132
|
+
.replace(
|
|
133
|
+
"TEMPLATE_DAGSTER_CLOUD_URL",
|
|
134
|
+
config.cloud_url or "",
|
|
135
|
+
)
|
|
132
136
|
.replace(
|
|
133
137
|
"TEMPLATE_DEFAULT_DEPLOYMENT_NAME",
|
|
134
138
|
config.deployment_name,
|
|
@@ -243,6 +247,10 @@ def configure_gitlab_ci_impl(config: DgPlusDeployConfigureOptions) -> None:
|
|
|
243
247
|
"TEMPLATE_ORGANIZATION_NAME",
|
|
244
248
|
config.organization_name or "",
|
|
245
249
|
)
|
|
250
|
+
.replace(
|
|
251
|
+
"TEMPLATE_DAGSTER_CLOUD_URL",
|
|
252
|
+
config.cloud_url or "",
|
|
253
|
+
)
|
|
246
254
|
.replace(
|
|
247
255
|
"TEMPLATE_DEFAULT_DEPLOYMENT_NAME",
|
|
248
256
|
config.deployment_name,
|
|
@@ -33,6 +33,7 @@ class DgPlusDeployConfigureOptions:
|
|
|
33
33
|
agent_type: DgPlusAgentType
|
|
34
34
|
agent_platform: Optional[DgPlusAgentPlatform]
|
|
35
35
|
organization_name: Optional[str]
|
|
36
|
+
cloud_url: Optional[str]
|
|
36
37
|
deployment_name: str
|
|
37
38
|
git_root: Optional[Path]
|
|
38
39
|
skip_confirmation_prompt: bool
|
dagster_dg_cli/cli/plus/login.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import webbrowser
|
|
2
|
+
from typing import Optional
|
|
2
3
|
|
|
3
4
|
import click
|
|
4
5
|
from dagster_dg_core.utils import DgClickCommand
|
|
@@ -8,15 +9,30 @@ from dagster_shared.plus.config import DagsterPlusCliConfig
|
|
|
8
9
|
from dagster_dg_cli.utils.plus.gql import FULL_DEPLOYMENTS_QUERY
|
|
9
10
|
from dagster_dg_cli.utils.plus.gql_client import DagsterPlusGraphQLClient
|
|
10
11
|
|
|
12
|
+
EU_DAGSTER_CLOUD_URL = "https://eu.dagster.cloud"
|
|
13
|
+
|
|
11
14
|
|
|
12
15
|
@click.command(name="login", cls=DgClickCommand)
|
|
16
|
+
@click.option(
|
|
17
|
+
"--region",
|
|
18
|
+
type=click.Choice(["us", "eu"]),
|
|
19
|
+
default=None,
|
|
20
|
+
help="Dagster Cloud region to login to. Use 'eu' for European region.",
|
|
21
|
+
)
|
|
13
22
|
@cli_telemetry_wrapper
|
|
14
|
-
def login_command() -> None:
|
|
23
|
+
def login_command(region: Optional[str]) -> None:
|
|
15
24
|
"""Login to Dagster Plus."""
|
|
16
25
|
# Import login server only when the command is actually used
|
|
17
26
|
from dagster_shared.plus.login_server import start_login_server
|
|
18
27
|
|
|
19
|
-
|
|
28
|
+
# Determine the base URL based on region
|
|
29
|
+
if region == "eu":
|
|
30
|
+
org_url = EU_DAGSTER_CLOUD_URL
|
|
31
|
+
elif DagsterPlusCliConfig.exists():
|
|
32
|
+
org_url = DagsterPlusCliConfig.get().url
|
|
33
|
+
else:
|
|
34
|
+
org_url = None
|
|
35
|
+
|
|
20
36
|
server, url = start_login_server(org_url)
|
|
21
37
|
|
|
22
38
|
try:
|
|
@@ -8,12 +8,13 @@ from pathlib import Path
|
|
|
8
8
|
from typing import Optional
|
|
9
9
|
|
|
10
10
|
import click
|
|
11
|
+
from dagster_cloud_cli.utils import SUPPORTED_PYTHON_VERSIONS
|
|
11
12
|
from dagster_dg_core.config import normalize_cli_config
|
|
12
13
|
from dagster_dg_core.context import DgContext
|
|
13
14
|
from dagster_dg_core.shared_options import dg_editable_dagster_options, dg_global_options
|
|
14
15
|
from dagster_dg_core.utils import DgClickCommand
|
|
15
16
|
from dagster_dg_core.utils.telemetry import cli_telemetry_wrapper
|
|
16
|
-
from dagster_shared.plus.config import DagsterPlusCliConfig
|
|
17
|
+
from dagster_shared.plus.config import DAGSTER_CLOUD_BASE_URL, DagsterPlusCliConfig
|
|
17
18
|
|
|
18
19
|
from dagster_dg_cli.cli.plus.constants import DgPlusAgentType
|
|
19
20
|
from dagster_dg_cli.cli.plus.deploy.configure.commands import resolve_python_version
|
|
@@ -63,6 +64,7 @@ def _resolve_config_for_build_artifacts(
|
|
|
63
64
|
agent_type=agent_type,
|
|
64
65
|
agent_platform=agent_platform,
|
|
65
66
|
organization_name=None,
|
|
67
|
+
cloud_url=plus_config.url if plus_config and plus_config.url else DAGSTER_CLOUD_BASE_URL,
|
|
66
68
|
deployment_name="prod",
|
|
67
69
|
git_root=None,
|
|
68
70
|
python_version=resolved_python_version,
|
|
@@ -76,7 +78,7 @@ def _resolve_config_for_build_artifacts(
|
|
|
76
78
|
@click.option(
|
|
77
79
|
"--python-version",
|
|
78
80
|
"python_version",
|
|
79
|
-
type=click.Choice(
|
|
81
|
+
type=click.Choice(SUPPORTED_PYTHON_VERSIONS),
|
|
80
82
|
help=(
|
|
81
83
|
"Python version used to deploy the project. If not set, defaults to the calling process's Python minor version."
|
|
82
84
|
),
|
|
@@ -20,6 +20,7 @@ from dagster_dg_cli.cli.plus.deploy.configure.commands import (
|
|
|
20
20
|
resolve_git_root,
|
|
21
21
|
resolve_organization,
|
|
22
22
|
resolve_python_version,
|
|
23
|
+
resolve_url,
|
|
23
24
|
)
|
|
24
25
|
from dagster_dg_cli.cli.plus.deploy.configure.configure_ci import configure_ci_impl
|
|
25
26
|
from dagster_dg_cli.cli.plus.deploy.configure.utils import DgPlusDeployConfigureOptions, GitProvider
|
|
@@ -40,8 +41,9 @@ def _resolve_config_for_github_actions(
|
|
|
40
41
|
|
|
41
42
|
plus_config = DagsterPlusCliConfig.get() if DagsterPlusCliConfig.exists() else None
|
|
42
43
|
|
|
43
|
-
# Prompt for org and deployment FIRST (legacy order)
|
|
44
|
+
# Prompt for org, URL, and deployment FIRST (legacy order)
|
|
44
45
|
resolved_organization = resolve_organization(None, plus_config)
|
|
46
|
+
resolved_url = resolve_url(None, plus_config, resolved_organization)
|
|
45
47
|
resolved_deployment = resolve_deployment(None, plus_config)
|
|
46
48
|
|
|
47
49
|
# Try to detect agent type and platform from Plus config
|
|
@@ -76,6 +78,7 @@ def _resolve_config_for_github_actions(
|
|
|
76
78
|
agent_type=agent_type,
|
|
77
79
|
agent_platform=agent_platform, # May be None - legacy didn't require platform
|
|
78
80
|
organization_name=resolved_organization,
|
|
81
|
+
cloud_url=resolved_url,
|
|
79
82
|
deployment_name=resolved_deployment,
|
|
80
83
|
git_root=resolved_git_root,
|
|
81
84
|
python_version=resolved_python_version,
|
|
@@ -14,6 +14,8 @@ concurrency:
|
|
|
14
14
|
env:
|
|
15
15
|
# The organization name in Dagster Cloud
|
|
16
16
|
DAGSTER_CLOUD_ORGANIZATION: "TEMPLATE_ORGANIZATION_NAME"
|
|
17
|
+
# The Dagster Cloud URL
|
|
18
|
+
DAGSTER_CLOUD_URL: "TEMPLATE_DAGSTER_CLOUD_URL"
|
|
17
19
|
# The API token from https://dagster.cloud/ should be stored in Secrets
|
|
18
20
|
DAGSTER_CLOUD_API_TOKEN: ${{ secrets.DAGSTER_CLOUD_API_TOKEN }}
|
|
19
21
|
# Path to the root folder containing the dagster project
|
|
@@ -86,7 +88,7 @@ jobs:
|
|
|
86
88
|
|
|
87
89
|
# Enable buildx for caching
|
|
88
90
|
- name: Set up Docker Buildx
|
|
89
|
-
uses: docker/setup-buildx-action@
|
|
91
|
+
uses: docker/setup-buildx-action@v3
|
|
90
92
|
|
|
91
93
|
# Login to the container registry
|
|
92
94
|
# TEMPLATE_CONTAINER_REGISTRY_LOGIN_FRAGMENT
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
variables:
|
|
5
5
|
# The organization name in Dagster Cloud
|
|
6
6
|
DAGSTER_CLOUD_ORGANIZATION: TEMPLATE_ORGANIZATION_NAME
|
|
7
|
+
# The Dagster Cloud URL
|
|
8
|
+
DAGSTER_CLOUD_URL: TEMPLATE_DAGSTER_CLOUD_URL
|
|
7
9
|
# The API token from https://dagster.cloud/ should be stored in a CI/CD Variable called DAGSTER_CLOUD_API_TOKEN
|
|
8
10
|
DAGSTER_CLOUD_API_TOKEN: $DAGSTER_CLOUD_API_TOKEN
|
|
9
11
|
|
|
@@ -14,6 +14,8 @@ concurrency:
|
|
|
14
14
|
env:
|
|
15
15
|
# The organization name in Dagster Cloud
|
|
16
16
|
DAGSTER_CLOUD_ORGANIZATION: "TEMPLATE_ORGANIZATION_NAME"
|
|
17
|
+
# The Dagster Cloud URL
|
|
18
|
+
DAGSTER_CLOUD_URL: "TEMPLATE_DAGSTER_CLOUD_URL"
|
|
17
19
|
# The API token from https://dagster.cloud/ should be stored in Secrets
|
|
18
20
|
DAGSTER_CLOUD_API_TOKEN: ${{ secrets.DAGSTER_CLOUD_API_TOKEN }}
|
|
19
21
|
# Path to the root folder containing the dagster project
|
|
@@ -89,7 +91,7 @@ jobs:
|
|
|
89
91
|
# Otherwise, enable buildx for caching Docker builds
|
|
90
92
|
- name: Set up Docker Buildx
|
|
91
93
|
if: steps.prerun.outputs.result == 'docker-deploy'
|
|
92
|
-
uses: docker/setup-buildx-action@
|
|
94
|
+
uses: docker/setup-buildx-action@v3
|
|
93
95
|
|
|
94
96
|
# Build and push (PEX or Docker based on project configuration)
|
|
95
97
|
- name: Build and push
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
variables:
|
|
2
2
|
# The organization name in Dagster Cloud
|
|
3
3
|
DAGSTER_CLOUD_ORGANIZATION: TEMPLATE_ORGANIZATION_NAME
|
|
4
|
+
# The Dagster Cloud URL
|
|
5
|
+
DAGSTER_CLOUD_URL: TEMPLATE_DAGSTER_CLOUD_URL
|
|
4
6
|
# The API token from https://dagster.cloud/ should be stored in a CI/CD Variable called DAGSTER_CLOUD_API_TOKEN
|
|
5
7
|
DAGSTER_CLOUD_API_TOKEN: $DAGSTER_CLOUD_API_TOKEN
|
|
6
8
|
# Path to the root folder containing the dagster project
|
dagster_dg_cli/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.12.
|
|
1
|
+
__version__ = "1.12.9"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dagster-dg-cli
|
|
3
|
-
Version: 1.12.
|
|
3
|
+
Version: 1.12.9
|
|
4
4
|
Home-page: https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-dg-cli
|
|
5
5
|
Author: Dagster Labs
|
|
6
6
|
Author-email: hello@dagsterlabs.com
|
|
@@ -13,9 +13,9 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
13
13
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
15
|
License-File: LICENSE
|
|
16
|
-
Requires-Dist: dagster-dg-core==1.12.
|
|
17
|
-
Requires-Dist: dagster==1.12.
|
|
18
|
-
Requires-Dist: dagster-cloud-cli==1.12.
|
|
16
|
+
Requires-Dist: dagster-dg-core==1.12.9
|
|
17
|
+
Requires-Dist: dagster==1.12.9
|
|
18
|
+
Requires-Dist: dagster-cloud-cli==1.12.9
|
|
19
19
|
Requires-Dist: typer
|
|
20
20
|
Provides-Extra: test
|
|
21
21
|
Requires-Dist: syrupy>=4.0.0; extra == "test"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
dagster_dg_cli/__init__.py,sha256=80p8sRHsNt96gbJE2KbIngs986h8JjgTu3WF4UC5EM8,187
|
|
2
2
|
dagster_dg_cli/py.typed,sha256=mDShSrm8qg9qjacQc2F-rI8ATllqP6EdgHuEYxuCXZ0,7
|
|
3
3
|
dagster_dg_cli/scaffold.py,sha256=ZZ_eJqG_-ztTfNN9szp32tyQ2OY-kQpON3d-aztPVII,4306
|
|
4
|
-
dagster_dg_cli/version.py,sha256=
|
|
4
|
+
dagster_dg_cli/version.py,sha256=dn_QNndv8rTcyvhz-Pp7s8wSrUmgQrpTKP3NCyL5Wp0,23
|
|
5
5
|
dagster_dg_cli/api_layer/__init__.py,sha256=RbGp1TIwWjxwfXa0nXJvuSRxpdLJsvPYayNQPQ9I4Xs,39
|
|
6
6
|
dagster_dg_cli/api_layer/api/__init__.py,sha256=azdRdTpi85fSuGiz5CCIqPN7UCzgHQUl_eo1Ksnjx-Y,28
|
|
7
7
|
dagster_dg_cli/api_layer/api/agent.py,sha256=KpNZHpveh7S0SB1iiOQMjE75rir6LWKA7K5R_6_jMls,709
|
|
@@ -56,25 +56,25 @@ dagster_dg_cli/cli/api/sensor.py,sha256=nZ7TvRDgjI5xev-dV1Mr16VfWNRKhwT2DkxspRvI
|
|
|
56
56
|
dagster_dg_cli/cli/api/shared.py,sha256=1pwdJT5Z3RTQuF1rKMTydPY8NLdfMPUvZeg5VZNQDLI,1132
|
|
57
57
|
dagster_dg_cli/cli/plus/__init__.py,sha256=9x4S_s-rpd4kZwLWAw5wa8OJXU4Dfnd5qPffuAvbzLY,576
|
|
58
58
|
dagster_dg_cli/cli/plus/constants.py,sha256=XC7gWLnnYhl9Ck6QYQu7FfYHi9_rFkPgFHiJGkj3xx0,336
|
|
59
|
-
dagster_dg_cli/cli/plus/login.py,sha256=
|
|
59
|
+
dagster_dg_cli/cli/plus/login.py,sha256=k_FxIxFZ6NSWbA8VfRymUpBHUaL-LSXDXkkee-jNFaQ,2633
|
|
60
60
|
dagster_dg_cli/cli/plus/create/__init__.py,sha256=KoTBdkaQkIUudzdqtKGMjC3ghnWzu-Jr0uvtq2Ty4JI,442
|
|
61
61
|
dagster_dg_cli/cli/plus/create/ci_api_token.py,sha256=vzmbzi184QcnHGvouLBXJvfOTXQko0nYdWN7Rt3efhs,1205
|
|
62
62
|
dagster_dg_cli/cli/plus/create/env.py,sha256=nnUwHmGjOd8SqpOXEABJNkmTT5tFN-MVYxb-1Twt_Ek,8022
|
|
63
63
|
dagster_dg_cli/cli/plus/deploy/__init__.py,sha256=iH9H3msPqegZdxXw81NbMP6nZbW9QI6_Q4L9Qas8E-Q,142
|
|
64
|
-
dagster_dg_cli/cli/plus/deploy/commands.py,sha256=
|
|
64
|
+
dagster_dg_cli/cli/plus/deploy/commands.py,sha256=CDw32VvTY1q07XL2a-6J0AFufn0e5JgQo_CeNtPY-Jg,22283
|
|
65
65
|
dagster_dg_cli/cli/plus/deploy/deploy_session.py,sha256=Dt7k5tSsdc2hYV1WVhHxv3_bZorIOTRKkOrf1vOkG1g,9564
|
|
66
66
|
dagster_dg_cli/cli/plus/deploy/configure/__init__.py,sha256=epLHdXaOmzuBJbHL7nuoWLSyGJAuVdku_AaAHL_zLhU,61
|
|
67
|
-
dagster_dg_cli/cli/plus/deploy/configure/commands.py,sha256=
|
|
67
|
+
dagster_dg_cli/cli/plus/deploy/configure/commands.py,sha256=Onb9QACDx23__o2CigZ-bR9VGaQYaw81wGtlc8ClGM0,16093
|
|
68
68
|
dagster_dg_cli/cli/plus/deploy/configure/configure_build_artifacts.py,sha256=R7ndB4gRw5tNi3vjV_CTvLPPUaymt99tuUJPpKP8sII,6498
|
|
69
|
-
dagster_dg_cli/cli/plus/deploy/configure/configure_ci.py,sha256=
|
|
70
|
-
dagster_dg_cli/cli/plus/deploy/configure/utils.py,sha256=
|
|
69
|
+
dagster_dg_cli/cli/plus/deploy/configure/configure_ci.py,sha256=_x-2cUYMwUPJtnmBVqBqkUDfPoVWpKlwbP_whDWW1tw,12044
|
|
70
|
+
dagster_dg_cli/cli/plus/deploy/configure/utils.py,sha256=HelkgPIo5NphNkxFGELAjQyb1aS4FKfNd_ufdQiUt7U,20305
|
|
71
71
|
dagster_dg_cli/cli/plus/pull/__init__.py,sha256=XkfBh-TzEpOa87GtuZF0uFh8ALlMCPqJ2Ddk9kDHlIE,304
|
|
72
72
|
dagster_dg_cli/cli/plus/pull/env.py,sha256=FdgPUJmiSiFssUDlYCEJIQnc33gf-hckA3ts0SwN2Cc,3399
|
|
73
73
|
dagster_dg_cli/cli/scaffold/__init__.py,sha256=ZL9UPzpVTP8YfsSC3YD5U3nEPYT16rivVmOUn3vBHbc,986
|
|
74
|
-
dagster_dg_cli/cli/scaffold/build_artifacts.py,sha256=
|
|
74
|
+
dagster_dg_cli/cli/scaffold/build_artifacts.py,sha256=CKA3Bj832nWCcK8VyhalDlF3Ne2uGH4G1IshhFw_bCM,4424
|
|
75
75
|
dagster_dg_cli/cli/scaffold/component.py,sha256=fC-mRcrcOudqQVGkSyh16DC2GYk_oU4IEip5kd1XxuE,3137
|
|
76
76
|
dagster_dg_cli/cli/scaffold/defs.py,sha256=V5NPjwjdLj-3GLpFxAOn_GDH6F3dRVXaQ01CvmIhwKs,17094
|
|
77
|
-
dagster_dg_cli/cli/scaffold/github_actions.py,sha256=
|
|
77
|
+
dagster_dg_cli/cli/scaffold/github_actions.py,sha256=cOFdSnWU0vx4MweSWsEotiSvINZ55L_-nLb32jBsv7k,4347
|
|
78
78
|
dagster_dg_cli/cli/scaffold/branch/CLAUDE.md,sha256=0XQ1HOSECtMXV--RPP08hCOl92ybG-qU0L1rWDK1-yM,9786
|
|
79
79
|
dagster_dg_cli/cli/scaffold/branch/__init__.py,sha256=nhrz0ztKo4DKVJR3oDRY-Vg1erzgkglHlmmhtmmY2NI,52
|
|
80
80
|
dagster_dg_cli/cli/scaffold/branch/ai.py,sha256=pNusm514BQn3hEhkFzcP6uAlllh79uXTIgAmrzzpyME,8907
|
|
@@ -98,10 +98,10 @@ dagster_dg_cli/templates/build-location-fragment-gitlab.yaml,sha256=V-5zuK68ZeHF
|
|
|
98
98
|
dagster_dg_cli/templates/build-location-fragment.yaml,sha256=rc_9r4UYLnShvhj_v7wqFPLZCkho4qFLpH0_wS-4H54,774
|
|
99
99
|
dagster_dg_cli/templates/deploy_uv_Dockerfile.jinja,sha256=faE-Lg3ugsfVVYZrtf6ox271pPL-I4KIny4t909yIp8,1536
|
|
100
100
|
dagster_dg_cli/templates/deploy_uv_editable_Dockerfile.jinja,sha256=MWhknoN5y2bJj47aMcH5iTE7WtRw3Fl0ubKaPRkfGlg,1984
|
|
101
|
-
dagster_dg_cli/templates/hybrid-github-action.yaml,sha256=
|
|
102
|
-
dagster_dg_cli/templates/hybrid-gitlab-ci.yaml,sha256=
|
|
103
|
-
dagster_dg_cli/templates/serverless-github-action.yaml,sha256=
|
|
104
|
-
dagster_dg_cli/templates/serverless-gitlab-ci.yaml,sha256=
|
|
101
|
+
dagster_dg_cli/templates/hybrid-github-action.yaml,sha256=Yjb4oyEXM_XPwBemqSsDlBmel6TCIffwsuYRikKZ-oo,5600
|
|
102
|
+
dagster_dg_cli/templates/hybrid-gitlab-ci.yaml,sha256=EZfB724fk48IxY3S1N9OQwLAB6oe_Y7Hy1OWPx3Q4Rg,2432
|
|
103
|
+
dagster_dg_cli/templates/serverless-github-action.yaml,sha256=c3woat-OQy94vMDLT4TV_ixHxNnE0Hz9qpe-_ayPI0Q,5282
|
|
104
|
+
dagster_dg_cli/templates/serverless-gitlab-ci.yaml,sha256=ubS1JIY5CL0IzCz7Y8dnvCKdwf_zMSJgEZ06g9tzOoc,2247
|
|
105
105
|
dagster_dg_cli/templates/COMPONENT_TYPE/COMPONENT_TYPE_NAME_PLACEHOLDER.py.jinja,sha256=gAZsuldk-aynvD8zh4Gs4Gqbf0i9K-XW0UybLTP5rEc,776
|
|
106
106
|
dagster_dg_cli/templates/registry_fragments/github/azure-container-registry-login-fragment.yaml,sha256=LwNxK__IhTRTLIeJU0Gu3xfvWtOuHilgB-3-M9Xpmu0,362
|
|
107
107
|
dagster_dg_cli/templates/registry_fragments/github/dockerhub-login-fragment.yaml,sha256=Ur4Lrt275kRE8P2TvdejYDwUGbljMH0JIAV3nRZZGww,268
|
|
@@ -122,9 +122,9 @@ dagster_dg_cli/utils/plus/build.py,sha256=58UiYQdqMJtMV639k8L8ypmf3P2uC4LVLDlF1z
|
|
|
122
122
|
dagster_dg_cli/utils/plus/defs_state_storage.py,sha256=gCDFBtwJybGbWVw2psjFP3UcYbNpPUjRBwwRpv7Cvms,5838
|
|
123
123
|
dagster_dg_cli/utils/plus/gql.py,sha256=oQpat_iLvNNtXcQzSdwpgpiCPIo0BaG-ghF6nz2KwOI,4317
|
|
124
124
|
dagster_dg_cli/utils/plus/gql_client.py,sha256=_ffeQVjYuwnvVlvU4x89bkko-4iSq7ECl70qUv-QrdQ,3517
|
|
125
|
-
dagster_dg_cli-1.12.
|
|
126
|
-
dagster_dg_cli-1.12.
|
|
127
|
-
dagster_dg_cli-1.12.
|
|
128
|
-
dagster_dg_cli-1.12.
|
|
129
|
-
dagster_dg_cli-1.12.
|
|
130
|
-
dagster_dg_cli-1.12.
|
|
125
|
+
dagster_dg_cli-1.12.9.dist-info/licenses/LICENSE,sha256=lY5yc1KHX4HoXjlWnIPGcCAsnNney2rb8M8ccT6NzRQ,11347
|
|
126
|
+
dagster_dg_cli-1.12.9.dist-info/METADATA,sha256=1aVKDmUtMmJLzpDY6x_5xm1wFLpcNbOZ5ibGT22aprk,1220
|
|
127
|
+
dagster_dg_cli-1.12.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
128
|
+
dagster_dg_cli-1.12.9.dist-info/entry_points.txt,sha256=2uH29TlJoAj0sbmXFpt7cZpvF5ebkPBMSACrrcB7BG4,47
|
|
129
|
+
dagster_dg_cli-1.12.9.dist-info/top_level.txt,sha256=WdK02rUdexe_tv4BCyOvZbigxRiXtR1q-kcF7Kn_sKQ,15
|
|
130
|
+
dagster_dg_cli-1.12.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|