-
-
Notifications
You must be signed in to change notification settings - Fork 25
Closed
Description
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
| return any(fnmatch(name, rule) for rule in MATCH_RULES) |
and the fact that these contain ? and not *:
pythonfinder/src/pythonfinder/utils.py
Lines 63 to 71 in 374e1d3
| RULES_BASE = [ | |
| "*{0}", | |
| "*{0}?", | |
| "*{0}?.?", | |
| "*{0}?.?m", | |
| "{0}?-?.?", | |
| "{0}?-?.?.?", | |
| "{0}?.?-?.?.?", | |
| ] |
Metadata
Metadata
Assignees
Labels
No labels