Skip to content

Commit

Permalink
Update setup.py for the submodule requirements structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandervsokol committed Oct 22, 2024
1 parent aac2577 commit c9ac5c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
with open('./README.md', 'r') as readme_file:
readme = readme_file.read()

with open('./tools/cl/runtime/install_requirements.txt') as install_requirements:
install_requires = [line.strip() for line in install_requirements.readlines()]
with open('./tools/cl/runtime/package_requirements.txt') as package_requirements:
install_requires = [line.strip() for line in package_requirements.readlines()]

setuptools.setup(
name='cl-runtime',
Expand Down
2 changes: 0 additions & 2 deletions tools/cl/runtime/install_requirements.txt

This file was deleted.

0 comments on commit c9ac5c0

Please sign in to comment.