Skip to content

Commit a614329

Browse files
committed
Bump 1.7.3
1 parent 8b43105 commit a614329

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 1.7.3
6+
57
### Fixed
68

79
* Dont fail install on non-semver version request [FIX #86]

qgis_plugin_manager/remote.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

qgis_plugin_manager/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
175175
def get_semver_version_str(v: str) -> str:
176176
try:

0 commit comments

Comments
 (0)