You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def_is_stable(version: str) ->bool:
# [...]ifint(major) >0andint(major) <40andlen(ver_list) >2:
return (int(minor) %2) ==0# XXX If we didn't see any indication that the version is a prerelease,# assume it's a normal (stable) releasereturnTrue
The last if condition in _is_stable() checks int(major) > 0. Perhaps that part just needs to be removed, or changed to >= 0.
The text was updated successfully, but these errors were encountered:
A follow-up of flathub/org.gnome.gedit#126
For bundling VTE, gedit has this in the Flatpak manifest:
VTE has a major version of 0, and uses the even/odd minor version scheme.
The algorithm to determine if a gnome version is stable doesn't work in the case of VTE.
See https://github.com/flathub-infra/flatpak-external-data-checker/blob/master/src/checkers/gnomechecker.py
The last if condition in
_is_stable()
checksint(major) > 0
. Perhaps that part just needs to be removed, or changed to>= 0
.The text was updated successfully, but these errors were encountered: