Skip to content

Commit 4cbde8c

Browse files
committed
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>
1 parent 7195f64 commit 4cbde8c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/cloudbase_init_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ on: [push, pull_request]
99

1010
jobs:
1111
linux-unit-tests:
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [ "3.13"]
16+
python-version: [ "3.10", "3.12", "3.13"]
1717
architecture: ["x64"]
1818

1919
steps:
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: windows-latest
3737
strategy:
3838
matrix:
39-
python-version: [ "3.12", "3.13"]
39+
python-version: [ "3.10", "3.12", "3.13"]
4040
architecture: ["x64", "x86"]
4141

4242
steps:

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifier =
1515
Operating System :: OS Independent
1616
Programming Language :: Python
1717
Programming Language :: Python :: 3
18+
Programming Language :: Python :: 3.10
1819
Programming Language :: Python :: 3.12
1920
Programming Language :: Python :: 3.13
2021

0 commit comments

Comments
 (0)