Skip to content
This repository was archived by the owner on Oct 21, 2022. It is now read-only.

Commit 0d2ad77

Browse files
authored
Ignore python version not supported results (#205)
1 parent dd44369 commit 0d2ad77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dashboard/dashboard_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(
7676
self.get_dependencies_needed_to_update()
7777

7878
def _is_py_version_incompatible(self, result):
79-
if result.status == compatibility_store.Status.INSTALL_ERROR:
79+
if result.status != compatibility_store.Status.SUCCESS:
8080
for version in [2, 3]:
8181
for pkg in result.packages:
8282
major_version = result.python_major_version

0 commit comments

Comments
 (0)