-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixed ML tests #33234
fixed ML tests #33234
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -490,12 +490,9 @@ def get_portability_package_data(): | |
'sentence-transformers', | ||
'skl2onnx', | ||
'pillow', | ||
# Support TF 2.16.0: https://github.com/apache/beam/issues/31294 | ||
# Once TF version is unpinned, also don't restrict Python version. | ||
'tensorflow<2.16.0;python_version<"3.12"', | ||
'tensorflow', | ||
'tensorflow-hub', | ||
# https://github.com/tensorflow/transform/issues/313 | ||
'tensorflow-transform;python_version<"3.11"', | ||
'tensorflow-transform', | ||
'tf2onnx', | ||
'torch', | ||
'transformers', | ||
|
@@ -504,6 +501,19 @@ def get_portability_package_data(): | |
# https://github.com/apache/beam/issues/31285 | ||
# 'xgboost<2.0', # https://github.com/apache/beam/issues/31252 | ||
], | ||
'p312_ml_test': [ | ||
'datatable', | ||
'embeddings', | ||
'onnxruntime', | ||
'sentence-transformers', | ||
'skl2onnx', | ||
'pillow', | ||
'tensorflow', | ||
'tensorflow-hub', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removing There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since py39-311 already test MLTransform so it is safe to ignore this for Py312 for now. |
||
'tf2onnx', | ||
'torch', | ||
'transformers', | ||
], | ||
'aws': ['boto3>=1.9,<2'], | ||
'azure': [ | ||
'azure-storage-blob>=12.3.2,<13', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@damccorm we should build more granular test package dependencies.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree