forked from flyteorg/flytekit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dynamically update lib version and publish all plugins (flyteorg#364)
Automatically publishes to pypi when a release is created. Removes the need to update any versions embedded in the files (init and setup.py) for the core library as well as plugins.
- Loading branch information
Showing
12 changed files
with
88 additions
and
27 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
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 |
---|---|---|
|
@@ -6,10 +6,12 @@ | |
|
||
plugin_requires = ["flytekit>=0.16.0b0,<1.0.0", "sagemaker-training>=3.6.2,<4.0.0"] | ||
|
||
__version__ = "develop" | ||
|
||
# TODO: move sagemaker install script here. | ||
setup( | ||
name=microlib_name, | ||
version="0.1.1", | ||
version=__version__, | ||
author="flyteorg", | ||
author_email="[email protected]", | ||
description="AWS Plugins for flytekit", | ||
|
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,9 +6,11 @@ | |
|
||
plugin_requires = ["flytekit>=0.16.0b0,<1.0.0"] | ||
|
||
__version__ = "develop" | ||
|
||
setup( | ||
name=microlib_name, | ||
version="0.1.1", | ||
version=__version__, | ||
author="flyteorg", | ||
author_email="[email protected]", | ||
description="This package holds Hive plugins for flytekit", | ||
|
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,9 +6,11 @@ | |
|
||
plugin_requires = ["flytekit>=0.16.0b0,<1.0.0"] | ||
|
||
__version__ = "develop" | ||
|
||
setup( | ||
name=microlib_name, | ||
version="0.1.1", | ||
version=__version__, | ||
author="flyteorg", | ||
author_email="[email protected]", | ||
description="K8s based Pytorch plugin for Flytekit", | ||
|
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 |
---|---|---|
|
@@ -7,9 +7,11 @@ | |
# TODO: Requirements are missing, add them back in later. | ||
plugin_requires = ["flytekit>=0.16.0b0,<1.0.0"] | ||
|
||
__version__ = "develop" | ||
|
||
setup( | ||
name=microlib_name, | ||
version="0.1.1", | ||
version=__version__, | ||
author="flyteorg", | ||
author_email="[email protected]", | ||
description="K8s based Tensorflow plugin for flytekit", | ||
|
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,9 +6,11 @@ | |
|
||
plugin_requires = ["flytekit>=0.16.0b0,<1.0.0", "papermill>=1.2.0", "nbconvert>=6.0.7", "ipykernel>=5.0.0"] | ||
|
||
__version__ = "develop" | ||
|
||
setup( | ||
name=microlib_name, | ||
version="0.1.1", | ||
version=__version__, | ||
author="flyteorg", | ||
author_email="[email protected]", | ||
description="This is the flytekit papermill plugin", | ||
|
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,9 +6,11 @@ | |
|
||
plugin_requires = ["flytekit>=0.16.0b0,<1.0.0", "k8s-proto>=0.0.3,<1.0.0"] | ||
|
||
__version__ = "develop" | ||
|
||
setup( | ||
name=microlib_name, | ||
version="0.1.1", | ||
version=__version__, | ||
author="flyteorg", | ||
author_email="[email protected]", | ||
description="Flytekit plugin to support K8s Pod tasks", | ||
|
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,9 +6,11 @@ | |
|
||
plugin_requires = ["flytekit>=0.16.0b0,<1.0.0", "pyspark>=3.0.0"] | ||
|
||
__version__ = "develop" | ||
|
||
setup( | ||
name=microlib_name, | ||
version="0.1.1", | ||
version=__version__, | ||
author="flyteorg", | ||
author_email="[email protected]", | ||
description="Spark 3 plugin for flytekit", | ||
|
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 |
---|---|---|
|
@@ -35,10 +35,11 @@ | |
"all": spark3 + all_but_spark, | ||
} | ||
|
||
__version__ = "develop" | ||
|
||
setup( | ||
name="flytekit", | ||
version="0.16.0b6", | ||
version=__version__, | ||
maintainer="Flyte Org", | ||
maintainer_email="[email protected]", | ||
packages=find_packages(exclude=["tests*"]), | ||
|