python: re-add support for 3.10

Currently, opendev gates still support testing Python version 3.10 and 3.13.

Change the setup.cfg and github gates accordingly, by re-adding 3.10 in
the test / support matrix.

Change-Id: Id47a3b6c41a7f755df5eaca33f1614fe57fde36b
Signed-off-by: Adrian Vladu <avladu@cloudbasesolutions.com>
This commit is contained in:
Adrian Vladu
2025-12-19 09:22:30 +02:00
parent 7195f6474b
commit 4cbde8cac2
2 changed files with 4 additions and 3 deletions

View File

@@ -9,11 +9,11 @@ on: [push, pull_request]
jobs:
linux-unit-tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
python-version: [ "3.13"]
python-version: [ "3.10", "3.12", "3.13"]
architecture: ["x64"]
steps:
@@ -36,7 +36,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [ "3.12", "3.13"]
python-version: [ "3.10", "3.12", "3.13"]
architecture: ["x64", "x86"]
steps:

View File

@@ -15,6 +15,7 @@ classifier =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13