dagster-dg-cli 1.12.7__py3-none-any.whl → 1.12.8__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 +3 -2
- dagster_dg_cli/cli/scaffold/build_artifacts.py +2 -1
- dagster_dg_cli/version.py +1 -1
- {dagster_dg_cli-1.12.7.dist-info → dagster_dg_cli-1.12.8.dist-info}/METADATA +4 -4
- {dagster_dg_cli-1.12.7.dist-info → dagster_dg_cli-1.12.8.dist-info}/RECORD +10 -10
- {dagster_dg_cli-1.12.7.dist-info → dagster_dg_cli-1.12.8.dist-info}/WHEEL +0 -0
- {dagster_dg_cli-1.12.7.dist-info → dagster_dg_cli-1.12.8.dist-info}/entry_points.txt +0 -0
- {dagster_dg_cli-1.12.7.dist-info → dagster_dg_cli-1.12.8.dist-info}/licenses/LICENSE +0 -0
- {dagster_dg_cli-1.12.7.dist-info → dagster_dg_cli-1.12.8.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,6 +9,7 @@ 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
|
|
@@ -296,7 +297,7 @@ def deploy_configure_group(
|
|
|
296
297
|
)
|
|
297
298
|
@click.option(
|
|
298
299
|
"--python-version",
|
|
299
|
-
type=click.Choice(
|
|
300
|
+
type=click.Choice(SUPPORTED_PYTHON_VERSIONS),
|
|
300
301
|
help="Python version used to deploy the project",
|
|
301
302
|
)
|
|
302
303
|
@click.option(
|
|
@@ -384,7 +385,7 @@ def deploy_configure_serverless(
|
|
|
384
385
|
)
|
|
385
386
|
@click.option(
|
|
386
387
|
"--python-version",
|
|
387
|
-
type=click.Choice(
|
|
388
|
+
type=click.Choice(SUPPORTED_PYTHON_VERSIONS),
|
|
388
389
|
help="Python version used to deploy the project",
|
|
389
390
|
)
|
|
390
391
|
@click.option(
|
|
@@ -8,6 +8,7 @@ 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
|
|
@@ -76,7 +77,7 @@ def _resolve_config_for_build_artifacts(
|
|
|
76
77
|
@click.option(
|
|
77
78
|
"--python-version",
|
|
78
79
|
"python_version",
|
|
79
|
-
type=click.Choice(
|
|
80
|
+
type=click.Choice(SUPPORTED_PYTHON_VERSIONS),
|
|
80
81
|
help=(
|
|
81
82
|
"Python version used to deploy the project. If not set, defaults to the calling process's Python minor version."
|
|
82
83
|
),
|
dagster_dg_cli/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.12.
|
|
1
|
+
__version__ = "1.12.8"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dagster-dg-cli
|
|
3
|
-
Version: 1.12.
|
|
3
|
+
Version: 1.12.8
|
|
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.8
|
|
17
|
+
Requires-Dist: dagster==1.12.8
|
|
18
|
+
Requires-Dist: dagster-cloud-cli==1.12.8
|
|
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=MukaistZHiQ_HvCd7oJvFM6KoAwAzuUNKkDHr_pCzwk,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
|
|
@@ -61,17 +61,17 @@ dagster_dg_cli/cli/plus/create/__init__.py,sha256=KoTBdkaQkIUudzdqtKGMjC3ghnWzu-
|
|
|
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=j264LWabX_7-bijDmA7WPIa76X2BkPMHnAY9mfplJI8,15088
|
|
68
68
|
dagster_dg_cli/cli/plus/deploy/configure/configure_build_artifacts.py,sha256=R7ndB4gRw5tNi3vjV_CTvLPPUaymt99tuUJPpKP8sII,6498
|
|
69
69
|
dagster_dg_cli/cli/plus/deploy/configure/configure_ci.py,sha256=MRCEaNAVa2hVaP4Z_aBjLEHMm0QE21xvEuYCfCLAjDM,11832
|
|
70
70
|
dagster_dg_cli/cli/plus/deploy/configure/utils.py,sha256=5CWUK7lvDLJmbDBEEhuEDNZvT6rnvxSUi6dqLDhHWk4,20276
|
|
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=CPfkfO_031Ce29Ld7_VW0MRMDU0sUPCTSdjC8S3RXcE,4302
|
|
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
77
|
dagster_dg_cli/cli/scaffold/github_actions.py,sha256=cs4hF_KDWjaf22FqQ3e8t9jHClL4NHxqhbNzGgMCjoA,4219
|
|
@@ -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.8.dist-info/licenses/LICENSE,sha256=lY5yc1KHX4HoXjlWnIPGcCAsnNney2rb8M8ccT6NzRQ,11347
|
|
126
|
+
dagster_dg_cli-1.12.8.dist-info/METADATA,sha256=diBaQzc27kedqp0ygqJofLs_3Zd6raMrX08E3dMmMlA,1220
|
|
127
|
+
dagster_dg_cli-1.12.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
128
|
+
dagster_dg_cli-1.12.8.dist-info/entry_points.txt,sha256=2uH29TlJoAj0sbmXFpt7cZpvF5ebkPBMSACrrcB7BG4,47
|
|
129
|
+
dagster_dg_cli-1.12.8.dist-info/top_level.txt,sha256=WdK02rUdexe_tv4BCyOvZbigxRiXtR1q-kcF7Kn_sKQ,15
|
|
130
|
+
dagster_dg_cli-1.12.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|