Skip to content

Commit

Permalink
CI: Update Python versions
Browse files Browse the repository at this point in the history
Avocado has recently dropped Python 3.7, among other reasons because
it has been EOL'ed.

Now, Avocado-VT's CI is broken because it tries to install the latest
Avocado from source and fails.  There are a number of possibilies
here, including limiting the Avocado version for the Python 3.7
checks, but, given that Python 3.7 has been EOL'ed, the most logical
action is to also remove it from Avocado-VT's CI checks.

While at it, let's also expand the coverage with Python 3.11.  Python
3.12 is not so straightforward because of the removal of distutils.

Reference: https://devguide.python.org/versions/
Signed-off-by: Cleber Rosa <[email protected]>
  • Loading branch information
clebergnu committed Jan 25, 2024
1 parent 755d910 commit 11bea3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10.1]
python-version: [3.8, 3.9, 3.10.1, 3.11]
fail-fast: false

steps:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:

strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10.1]
python-version: [3.8, 3.9, 3.10.1, 3.11]
fail-fast: false

steps:
Expand Down

0 comments on commit 11bea3b

Please sign in to comment.