-
Notifications
You must be signed in to change notification settings - Fork 417
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
install_requirements.py: reorganize requirements #7705
base: main
Are you sure you want to change the base?
Conversation
Stack from ghstack (oldest at bottom): |
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/7705
Note: Links to docs will display an error until the docs builds have been completed. ⏳ No Failures, 2 PendingAs of commit a309d3d with merge base 1a6b7a6 (): This comment was automatically generated by Dr. CI and updates every 15 minutes. |
Duplicate requirements with the pyproject.toml > /dev/null One unique devel reqiurement > requirements-dev.txt Examples requirements > requirements-examples.txt Nightlies stayed in the script. Rationale: be as "normal" a Python project as seemed possible. Test Plan: install_requirements.sh in a clean venv succeeded ghstack-source-id: 115e64db5af146cadb72cd5ea8db739312752c83 ghstack-comment-id: 2596313740 Pull Request resolved: #7705
"cmake", # For building binary targets. | ||
"pip>=23", # For building the pip package. | ||
"pyyaml", # Imported by the kernel codegen tools. | ||
"setuptools>=63", # For building the pip package. | ||
"tomli", # Imported by extract_sources.py when using python < 3.11. | ||
"wheel", # For building the pip package archive. | ||
"zstd", # Imported by resolve_buck.py. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do these need to be added to requirements-dev.txt?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no. they are in the pyproject.toml already.
requirements-dev.txt
Outdated
@@ -0,0 +1,2 @@ | |||
# For visualizing ExportedPrograms | |||
ai-edge-model-explorer >= 0.1.16 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't need this anymore
Duplicate requirements with the pyproject.toml > /dev/null
One unique devel reqiurement > requirements-dev.txt
Examples requirements > requirements-examples.txt
Nightlies stayed in the script.
Rationale: be as "normal" a Python project as seemed possible.
Test Plan: install_requirements.sh in a clean venv succeeded