-
Notifications
You must be signed in to change notification settings - Fork 10
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
Add --32bit
flag
#27
base: main
Are you sure you want to change the base?
Add --32bit
flag
#27
Conversation
tusharsadhwani
commented
Jun 29, 2024
•
edited
Loading
edited
- fix all todos
I would be willing to help test |
# already installed | ||
python_bin_path = _python_bin_path(python_folder) | ||
return python_folder_name, python_bin_path | ||
if force_32bit and python_folder_name.endswith(SUFFIX_32BIT): |
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.
When using force_32bit the python_folder_name
does not have a 32bit suffix.
Steps to reproduce:
ensure_python(python_version = 3.10.14, force_32bit = false)
ensure_python(python_version = 3.10.14, force_32bit = true)
- The
32bit
python environment overwrites the64bit
python environment in.yen_pythons
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.
thanks for catching this! I'll be working on this pr later today.
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.
Well looks like I missed your todo # TODO: use suffix_32bit here
:)