"tests/vscode:/vscode.git/clone" did not exist on "be38b2d711b221507f10322fb449049d153854c5"
Unverified Commit 6b91e6cd authored by liuzhe-lz's avatar liuzhe-lz Committed by GitHub
Browse files

fix install script (#4690)

parent 2566badb
...@@ -155,7 +155,7 @@ def _find_python_packages(): ...@@ -155,7 +155,7 @@ def _find_python_packages():
for dirpath, dirnames, filenames in os.walk('nni'): for dirpath, dirnames, filenames in os.walk('nni'):
if '/__pycache__' not in dirpath and '/.mypy_cache' not in dirpath and '/default_config' not in dirpath: if '/__pycache__' not in dirpath and '/.mypy_cache' not in dirpath and '/default_config' not in dirpath:
packages.append(dirpath.replace('/', '.')) packages.append(dirpath.replace('/', '.'))
return sorted(packages) + ['nni_node'] return sorted(packages) + ['nni_assets', 'nni_node']
def _find_requirements_txt(): def _find_requirements_txt():
requirement_files = [] requirement_files = []
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment