Merge branch 'main' into web_workflow

This commit is contained in:
foamyguy 2023-11-17 16:15:22 -06:00
commit 32dab6beaf
2 changed files with 2 additions and 1 deletions

View file

@ -1871,7 +1871,7 @@ def update(ctx, update_all): # pragma: no cover
module.device_version, module.bundle_version
)
)
if isinstance(module.bundle_version, str) and not VersionInfo.isvalid(
if isinstance(module.bundle_version, str) and not VersionInfo.is_valid(
module.bundle_version
):
click.secho(

View file

@ -28,6 +28,7 @@ install_requires = [
"appdirs>=1.4.3",
"requests>=2.22.0",
"findimports>=2.1.0",
"toml>=0.10.2",
# importlib_metadata is only available for 3.7, and is not needed for 3.8 and up.
"importlib_metadata; python_version == '3.7'",
"update_checker",