pythonfinder.Finder().find_all_python_versions() fails to find python versions with two digit numbers in minor version.
This is probably due to this check:
|
return any(fnmatch(name, rule) for rule in MATCH_RULES) |
and the fact that these contain ? and not *:
|
RULES_BASE = [ |
|
"*{0}", |
|
"*{0}?", |
|
"*{0}?.?", |
|
"*{0}?.?m", |
|
"{0}?-?.?", |
|
"{0}?-?.?.?", |
|
"{0}?.?-?.?.?", |
|
] |
pythonfinder.Finder().find_all_python_versions()fails to find python versions with two digit numbers in minor version.This is probably due to this check:
pythonfinder/src/pythonfinder/utils.py
Line 220 in 374e1d3
and the fact that these contain
?and not*:pythonfinder/src/pythonfinder/utils.py
Lines 63 to 71 in 374e1d3