-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73633a8
commit b54977c
Showing
10 changed files
with
176 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "1.7.0" | ||
__version__ = "1!0+dev" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,15 +6,17 @@ | |
|
||
def get_version() -> str: | ||
version: Dict[str, str] = {} | ||
with open(Path(__file__).parent / "dagster_cloud_cli/version.py", encoding="utf8") as fp: | ||
with open( | ||
Path(__file__).parent / "dagster_cloud_cli/version.py", encoding="utf8" | ||
) as fp: | ||
exec(fp.read(), version) | ||
|
||
return version["__version__"] | ||
|
||
|
||
setup( | ||
name="dagster-cloud-cli", | ||
version=get_version(), | ||
version="1.7.0", # get_version(), | ||
author_email="[email protected]", | ||
packages=find_packages(exclude=["dagster_cloud.cli_tests*"]), | ||
include_package_data=True, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
from .defs import ( | ||
build_anomaly_detection_freshness_checks as build_anomaly_detection_freshness_checks, | ||
) | ||
from .types import AnomalyDetectionModelParams as AnomalyDetectionModelParams | ||
from .types import ( | ||
AnomalyDetectionModelParams as AnomalyDetectionModelParams, | ||
BetaFreshnessAnomalyDetectionParams as BetaFreshnessAnomalyDetectionParams, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "1.7.0" | ||
__version__ = "1!0+dev" |
Oops, something went wrong.