File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ ## 1.7.3
6+
57### Fixed
68
79* Dont fail install on non-semver version request [ FIX #86 ]
Original file line number Diff line number Diff line change @@ -351,12 +351,12 @@ def install(
351351 requested_ver = get_semver_version (version )
352352 plugin = next ((p for p in versions if p .version == requested_ver ), None )
353353 except ValueError :
354- # Not a semver version
354+ # Not a semver version
355355 echo .debug (
356356 f"{ version } cannot be turned into SemVer compatible version"
357357 f"Using the the literal requested version for download"
358358 )
359- pass
359+ pass
360360
361361 # Build a download URL from the latest version
362362 # XXX This is a best effort for getting a specific version
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ def replace(c: str) -> str:
170170 return version
171171
172172
173- # Infaillible method that attempts to convert
173+ # Infaillible method that attempts to convert
174174# version string as a SemVer compatible string
175175def get_semver_version_str (v : str ) -> str :
176176 try :
You can’t perform that action at this time.
0 commit comments