leandron commented on a change in pull request #6302:
URL: https://github.com/apache/incubator-tvm/pull/6302#discussion_r490341993
##########
File path: python/setup.py
##########
@@ -166,7 +166,19 @@ def get_package_data_files():
],
extras_require={
"test": ["pillow<7", "matplotlib"],
- "extra_feature": ["tornado", "psutil", "xgboost>=1.1.0", "mypy",
"orderedset"],
+ "extra_feature": [
+ "tornado",
+ "psutil",
+ "xgboost>=1.1.0",
+ "mypy",
+ "orderedset",
+ "tensorflow==2.1.0",
+ "tflite==2.1.0",
Review comment:
You mean having a separate `extras_require` label, such as `tvmc`, for
example?
```
extras_require={
"test": ["pillow<7", "matplotlib"],
"extra_feature": [
"tornado",
"psutil",
"xgboost>=1.1.0",
"mypy",
"orderedset",
],
"tvmc": [
"tensorflow>=2.1.0",
"tflite>=2.1.0",
"onnx>=1.7.0",
"onnxruntime>=1.0.0",
"torch>=1.4.0",
"torchvision>=0.5.0",
],
...
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]