-
Notifications
You must be signed in to change notification settings - Fork 249
Minor typo + Update install_requirements.sh to support python 3.10 >= #1368
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
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/torchchat/1368
Note: Links to docs will display an error until the docs builds have been completed. ✅ No FailuresAs of commit a2917ea with merge base 93f713f ( This comment was automatically generated by Dr. CI and updates every 15 minutes. |
Going to use this PR to address some other related instrall_req bugs and open python to 3.10+ |
install/install_requirements.sh
Outdated
fi | ||
fi | ||
echo "Using python executable: $PYTHON_EXECUTABLE" | ||
|
||
PYTHON_SYS_VERSION="$($PYTHON_EXECUTABLE -c "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')")" | ||
# Check python version. Expect 3.10.x or 3.11.x | ||
# Check python version. Expect greater than 3.10.x |
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.
word and code below seem mismatch -- here we say greater than 3.10.x, but the code below is for greater than or equlal to 3.10
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.
Updated wording
…#1368) * Update install_requirements.sh to support python 3.10 >= , <3.13 * Update install_requirements.sh * Update install_requirements.sh
Minor fixes to install_requirement (undefined variable) + Loosen the Python requirements to 3.10.0+
Fails with 3.8
Works with 3.10.0