Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Load pins from iree-requirements.txt in setup.py. #21

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions iree-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
--find-links https://iree.dev/pip-release-links.html
iree-compiler==20240514.893
iree-runtime==20240514.893
Comment on lines +1 to 3
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure how to make this work without either

A) adding --find-links https://iree.dev/pip-release-links.html to all install commands for iree-turbine
B) only pinning to versions here that are published to pypi (https://pypi.org/project/iree-compiler/#history)

1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def load_requirement_pins(requirements_file: str):


load_requirement_pins("requirements.txt")
load_requirement_pins("iree-requirements.txt")


def get_version_spec(dep: str):
Expand Down
Loading