Skip to content

Commit

Permalink
[onert] Fix path in Python API setup.py script (Samsung#13330)
Browse files Browse the repository at this point in the history
This commit fixes path package use in setup.py script.

ONE-DCO-1.0-Signed-off-by: Mateusz Bencer <[email protected]>
  • Loading branch information
mbencer authored Jul 2, 2024
1 parent 1389776 commit 670441e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infra/nnfw/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
print(f"Created directory '{package_directory}'...")

# copy *py files to package_directory
PY_DIR = os.path.join(THIS_FILE_DIR, '../../../runtime/onert/python/package')
PY_DIR = os.path.join(THIS_FILE_DIR, '../../../runtime/onert/api/python/package')
for py_file in os.listdir(PY_DIR):
if py_file.endswith(".py"):
src_path = os.path.join(PY_DIR, py_file)
Expand Down

0 comments on commit 670441e

Please sign in to comment.