[FIX] impossible to specify a version, like 3.14.2 or 3.15.0a7 #2
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "merwyn/compile-python:main"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi!
I found a bug that prevents me from installing a specific version of Python.
Before the fix:
After:
The only slightly annoying thing about this fix is that if you request a specific version but it doesn't exist, the code will default to the latest version of the requested release.
That's why I added the information about the release selected by the script.
@ -34,3 +36,3 @@sed "s/^>//;s|/<$||" |sort --sort=version |grep "^$PY_VERSION\." |grep "^$PY_VERSION\.\?" |I'm not sure about the
\?, if the idea is to make the dot optional, why not just removing the dot?So true, sorry.
It just not poped in my mind when I change it.
Fixed
@ -54,12 +56,23 @@ get-python-version-suffix()# a5local VERSION="$1"local USER_INPUT_VERSION="$2"Please add at least one example about the usage of the 2nd arg in the function "docstring".
Done, I wrote some explanations :)
Merci !