mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
🐛 fix version list
This commit is contained in:
parent
b61e47a15d
commit
aa0fe93a50
1 changed files with 7 additions and 2 deletions
9
start.py
9
start.py
|
|
@ -726,7 +726,7 @@ def _find_frozen_openpype(use_version: str = None,
|
||||||
else:
|
else:
|
||||||
# Default behavior to use latest version
|
# Default behavior to use latest version
|
||||||
_print((
|
_print((
|
||||||
">>> Finding latest version compatible "
|
">>> Finding latest version "
|
||||||
f"with [ {installed_version} ]"))
|
f"with [ {installed_version} ]"))
|
||||||
openpype_version = bootstrap.find_latest_openpype_version(
|
openpype_version = bootstrap.find_latest_openpype_version(
|
||||||
use_staging)
|
use_staging)
|
||||||
|
|
@ -947,7 +947,12 @@ def _boot_print_versions(use_staging, local_version, openpype_root):
|
||||||
openpype_versions = bootstrap.find_openpype(
|
openpype_versions = bootstrap.find_openpype(
|
||||||
include_zips=True,
|
include_zips=True,
|
||||||
staging=use_staging,
|
staging=use_staging,
|
||||||
compatible_with=compatible_with)
|
)
|
||||||
|
openpype_versions = [
|
||||||
|
version for version in openpype_versions
|
||||||
|
if version.is_compatible(
|
||||||
|
OpenPypeVersion.get_installed_version())
|
||||||
|
]
|
||||||
|
|
||||||
list_versions(openpype_versions, local_version)
|
list_versions(openpype_versions, local_version)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue