You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2022/07/04 18:24:27 UTC

[GitHub] [tvm] Codle commented on a diff in pull request #12000: [Fix] fix python setup.py file bug

Codle commented on code in PR #12000:
URL: https://github.com/apache/tvm/pull/12000#discussion_r913202840


##########
python/setup.py:
##########
@@ -194,7 +194,15 @@ def is_pure(self):
     curr_path = os.path.dirname(os.path.abspath(os.path.expanduser(__file__)))
     for i, path in enumerate(LIB_LIST):
         LIB_LIST[i] = os.path.relpath(path, curr_path)
-    setup_kwargs = {"include_package_data": True, "data_files": [("tvm", LIB_LIST)]}
+    LIB_DATA_FILES = []
+    if os.path.isfile(path):

Review Comment:
   Sorry, it's my mistake and I have fixed it.



-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org