damccorm commented on code in PR #35056:
URL: https://github.com/apache/beam/pull/35056#discussion_r2399704170
##########
sdks/python/setup.py:
##########
@@ -557,6 +557,20 @@ def get_portability_package_data():
'torch',
'transformers',
],
+ 'p313_ml_test': [
Review Comment:
Ok, what if we do something in the middle? We could define a `ml_base`
dependency like we do with some other deps (e.g.
https://github.com/apache/beam/blob/be11a3ef913e522217dd58c6ea53ac24041f12a6/sdks/python/setup.py#L159)
Then we can have:
```
'ml_test': [
'datatable',
'dill',
'tensorflow-transformers'
] + ml_base,
'p312_ml_test': [
'datatable'
] + ml_base,
'p313_ml_test': ml_base
```
Thoughts?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]