Skip to content

Commit 090f543

Browse files
committed
Merge branch 'master' of github.com:flyteorg/flytekit
-e Signed-off-by: machichima <nary12321@gmail.com>
2 parents 5f91384 + 3c6b61d commit 090f543

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

flytekit/remote/remote.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2967,6 +2967,12 @@ def activate_launchplan(self, ident: Identifier):
29672967
"""
29682968
self.client.update_launch_plan(id=ident, state=LaunchPlanState.ACTIVE)
29692969

2970+
def deactivate_launchplan(self, ident: Identifier):
2971+
"""
2972+
Given a launchplan, deactivate it, all previous versions are deactivated.
2973+
"""
2974+
self.client.update_launch_plan(id=ident, state=LaunchPlanState.INACTIVE)
2975+
29702976
def download(
29712977
self, data: typing.Union[LiteralsResolver, Literal, LiteralMap], download_to: str, recursive: bool = True
29722978
):

plugins/flytekit-airflow/dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ itsdangerous==2.2.0
593593
# connexion
594594
# flask
595595
# flask-wtf
596-
jinja2==3.1.4
596+
jinja2==3.1.6
597597
# via
598598
# apache-airflow
599599
# flask

plugins/flytekit-airflow/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"apache-airflow-providers-google<12.0.0",
1010
"flytekit>1.10.7",
1111
"flyteidl>1.10.7",
12+
"sqlalchemy-spanner<1.12.0",
1213
]
1314

1415
__version__ = "0.0.0+develop"

0 commit comments

Comments
 (0)