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.
Fix plugin regressions (flyteorg#688)
* fix pandera regression Signed-off-by: Niels Bantilan <[email protected]> * install plugin with pip Signed-off-by: Niels Bantilan <[email protected]> * fix pandera plugin tests Signed-off-by: Niels Bantilan <[email protected]> * wip Signed-off-by: Niels Bantilan <[email protected]> * wip Signed-off-by: Niels Bantilan <[email protected]> * wip Signed-off-by: Niels Bantilan <[email protected]> * wip Signed-off-by: Niels Bantilan <[email protected]> * wip Signed-off-by: Niels Bantilan <[email protected]> * wip Signed-off-by: Niels Bantilan <[email protected]> * add spark flytekit plugin to papermill test_requires Signed-off-by: Niels Bantilan <[email protected]> * wip Signed-off-by: Niels Bantilan <[email protected]> * wip Signed-off-by: Niels Bantilan <[email protected]> * wip Signed-off-by: Niels Bantilan <[email protected]> * wip Signed-off-by: Niels Bantilan <[email protected]> * add sqlalchemy to great expectations plugin Signed-off-by: Niels Bantilan <[email protected]> * wip Signed-off-by: Niels Bantilan <[email protected]> * wip Signed-off-by: Niels Bantilan <[email protected]> * plugins plugins plugins! Signed-off-by: Niels Bantilan <[email protected]> * lint Signed-off-by: Niels Bantilan <[email protected]>
- Loading branch information
1 parent
fe02c81
commit eacdc04
Showing
11 changed files
with
118 additions
and
46 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
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
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,19 +7,20 @@ | |
|
||
PACKAGE_NAME = "flytekitplugins-parent" | ||
SOURCES = { | ||
"flytekitplugins-athena": "flytekit-aws-athena", | ||
"flytekitplugins-awssagemaker": "flytekit-aws-sagemaker", | ||
"flytekitplugins-fsspec": "flytekit-data-fsspec", | ||
"flytekitplugins-dolt": "flytekit-dolt", | ||
"flytekitplugins-great_expectations": "flytekit-greatexpectations", | ||
"flytekitplugins-hive": "flytekit-hive", | ||
"flytekitplugins-papermill": "flytekit-papermill", | ||
"flytekitplugins-spark": "flytekit-spark", | ||
"flytekitplugins-pod": "flytekit-k8s-pod", | ||
"flytekitplugins-kfpytorch": "flytekit-kf-pytorch", | ||
"flytekitplugins-awssagemaker": "flytekit-aws-sagemaker", | ||
"flytekitplugins-kftensorflow": "flytekit-kf-tensorflow", | ||
"flytekitplugins-pandera": "flytekit-pandera", | ||
"flytekitplugins-dolt": "flytekit-dolt", | ||
"flytekitplugins-sqlalchemy": "flytekit-sqlalchemy", | ||
"flytekitplugins-athena": "flytekit-aws-athena", | ||
"flytekitplugins-great_expectations": "flytekit-greatexpectations", | ||
"flytekitplugins-papermill": "flytekit-papermill", | ||
"flytekitplugins-snowflake": "flytekit-snowflake", | ||
"flytekitplugins-spark": "flytekit-spark", | ||
"flytekitplugins-sqlalchemy": "flytekit-sqlalchemy", | ||
} | ||
|
||
|
||
|
@@ -64,7 +65,7 @@ def run(self): | |
version="0.1.0", | ||
author="flyteorg", | ||
author_email="[email protected]", | ||
description="This is a fake package to help install all the plugins", | ||
description="This is a microlib package to help install all the plugins", | ||
license="apache2", | ||
classifiers=["Private :: Do Not Upload to pypi server"], | ||
install_requires=[], | ||
|