Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

avocado/core/loader.py: support Python 3.12 by using importlib #5727

Merged
merged 4 commits into from
Jul 17, 2023

Commits on Jul 13, 2023

  1. avocado/core/loader.py: support Python 3.12 by using importlib

    The imp module is no longer available on Python 3.12.  Besides
    enabling usage under Python 3.12, also works as a backport for
    a test file location import fix.
    
    This also enables RPM builds under Fedora 39.
    
    Reference: avocado-framework#5686
    Reference: https://bugzilla.redhat.com/show_bug.cgi?id=2220126
    Signed-off-by: Cleber Rosa <[email protected]>
    clebergnu committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    792ab1b View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2023

  1. CI Workflow: install Python 3.6 compatible version of urllib3

    urllib3 is a dependency of requests, which is a dependency of
    resultsdb_api.  Because there's no pinning of version elsewhere, a
    version that is incompatible with Python 3.6 can end being installed.
    
    Signed-off-by: Cleber Rosa <[email protected]>
    clebergnu committed Jul 14, 2023
    Configuration menu
    Copy the full SHA
    a2c16d0 View commit details
    Browse the repository at this point in the history
  2. Robot plugin: limit version of robotframework dependency

    There are API changes in versions 6.0 and later that (at the very
    least) trigger lint errors.  Let's be safe and use known compatible
    versions.
    
    Signed-off-by: Cleber Rosa <[email protected]>
    clebergnu committed Jul 14, 2023
    Configuration menu
    Copy the full SHA
    ca66328 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2023

  1. CI: bump version of macOS and Python used on GH workflow

    It seems there are no workers available using the old macOS version.
    Let's bump to the one being used on the latest Avocado along with the
    Python version it uses.
    
    Signed-off-by: Cleber Rosa <[email protected]>
    clebergnu committed Jul 17, 2023
    Configuration menu
    Copy the full SHA
    f1a634d View commit details
    Browse the repository at this point in the history