Skip to content

Commit

Permalink
fix: disable updates to logos 39, currently broken
Browse files Browse the repository at this point in the history
An update to logos 39 breaks the install, as well as a fresh install fails
  • Loading branch information
ctrlaltf24 authored and thw26 committed Jan 15, 2025
1 parent 4b8f5ed commit ea4c7f2
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions ou_dedetai/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,12 +538,10 @@ def get_logos_releases(app=None):
# if len(releases) == 5:
# break

# Disabled filtering: with Logos 30+, all versions are known to be working.
# Keeping code if it needs to be reactivated.
# filtered_releases = utils.filter_versions(releases, 36, 1)
# logging.debug(f"Available releases: {', '.join(releases)}")
# logging.debug(f"Filtered releases: {', '.join(filtered_releases)}")
filtered_releases = releases
# Logos 39+ doesn't install
filtered_releases = utils.filter_versions(releases, 39, 1)
logging.debug(f"Available releases: {', '.join(releases)}")
logging.debug(f"Filtered releases: {', '.join(filtered_releases)}")

if app:
if config.DIALOG == 'tk':
Expand Down

0 comments on commit ea4c7f2

Please sign in to comment.