Skip to content

Commit

Permalink
Release 1.3.5 (tracks 13bc2aaadd5cbd3070e92705c5a36b36fa01a532)
Browse files Browse the repository at this point in the history
  • Loading branch information
elementl-devtools committed May 18, 2023
1 parent 2e5023b commit fc39c32
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dagster-cloud-examples/dagster_cloud_examples/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.4"
__version__ = "1.3.5"
2 changes: 1 addition & 1 deletion dagster-cloud-examples/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def get_version() -> str:
name="dagster_cloud_examples",
version=ver,
packages=find_packages(exclude=["dagster_cloud_examples_tests*"]),
install_requires=["dagster_cloud==1.3.4"],
install_requires=["dagster_cloud==1.3.5"],
extras_require={"tests": ["mypy", "pylint", "pytest"]},
author="Elementl",
author_email="[email protected]",
Expand Down
15 changes: 15 additions & 0 deletions dagster-cloud/dagster_cloud/storage/schedules/storage.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from typing import TYPE_CHECKING, Any, Iterable, Optional, Sequence, Set

import dagster._check as check
from dagster import AssetKey
from dagster._core.definitions.asset_reconciliation_sensor import AutoMaterializeAssetEvaluation
from dagster._core.definitions.run_request import InstigatorType
from dagster._core.scheduler.instigation import (
AutoMaterializeAssetEvaluationRecord,
InstigatorState,
InstigatorStatus,
InstigatorTick,
Expand Down Expand Up @@ -192,6 +195,18 @@ def purge_ticks(
):
raise NotImplementedError("Not callable from user cloud")

def add_auto_materialize_asset_evaluations(
self,
evaluation_id: int,
asset_evaluations: Sequence[AutoMaterializeAssetEvaluation],
) -> None:
raise NotImplementedError("Not callable from user cloud")

def get_auto_materialize_asset_evaluations(
self, asset_key: AssetKey, limit: int, cursor: Optional[int] = None
) -> Sequence[AutoMaterializeAssetEvaluationRecord]:
raise NotImplementedError("Not callable from user cloud")

def upgrade(self):
raise NotImplementedError("Not callable from user cloud")

Expand Down
2 changes: 1 addition & 1 deletion dagster-cloud/dagster_cloud/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.4"
__version__ = "1.3.5"
12 changes: 6 additions & 6 deletions dagster-cloud/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ def get_description() -> str:
packages=find_packages(exclude=["dagster_cloud_tests*"]),
include_package_data=True,
install_requires=[
"dagster==1.3.4",
"dagster-cloud-cli==1.3.4",
"dagster==1.3.5",
"dagster-cloud-cli==1.3.5",
"pex",
"questionary",
"requests",
Expand All @@ -62,11 +62,11 @@ def get_description() -> str:
"types-PyYAML",
"types-requests",
"dagster-cloud-test-infra",
"dagster_k8s==0.19.4",
"dagster_k8s==0.19.5",
],
"docker": ["docker", "dagster_docker==0.19.4"],
"kubernetes": ["kubernetes", "dagster_k8s==0.19.4"],
"ecs": ["dagster_aws==0.19.4", "boto3"],
"docker": ["docker", "dagster_docker==0.19.5"],
"kubernetes": ["kubernetes", "dagster_k8s==0.19.5"],
"ecs": ["dagster_aws==0.19.5", "boto3"],
"sandbox": ["supervisor"],
"pex": ["boto3"],
"serverless": ["boto3"],
Expand Down

0 comments on commit fc39c32

Please sign in to comment.