# Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved. # Licensed under the Universal Permissive License v 1.0 as shown at https://opensource.org/licenses/UPL. import sys if sys.version_info[0] == 3: from .rpmutils import ( get_installed_package_list, verify_packages ) from .dnfutils import ( package_full_update, package_remove, package_update ) else: from rpmutils import ( get_installed_package_list, verify_packages ) from yumutils import ( package_full_update, package_remove, package_update )