3434 runs-on : ${{ matrix.os }}
3535 strategy :
3636 matrix :
37- # As of 2024-10-18, ubuntu-latest can refer to different Ubuntu versions,
38- # which can can cause problems with os module constants.
39- os : ["ubuntu-24.04", "windows-latest", "macos-latest"]
37+ os : ["ubuntu-latest", "windows-latest", "macos-latest"]
4038 python-version : ["3.9", "3.10", "3.11", "3.12", "3.13"]
4139 fail-fast : false
4240
@@ -61,18 +59,14 @@ jobs:
6159 runs-on : ${{ matrix.os }}
6260 strategy :
6361 matrix :
64- # As of 2024-10-18, ubuntu-latest can refer to different Ubuntu versions,
65- # which causes problems when testing gdb.
66- os : ["ubuntu-24.04", "windows-latest", "macos-latest"]
62+ os : ["ubuntu-latest", "windows-latest", "macos-latest"]
6763 shard-index : [0, 1, 2, 3]
6864 fail-fast : false
6965 steps :
7066 - uses : actions/checkout@v4
7167 - uses : actions/setup-python@v5
7268 with :
73- # TODO: Use Python 3.12. As of 2024-03-08, several third-party
74- # packages fail to install with Python 3.12.
75- python-version : " 3.11"
69+ python-version : " 3.12"
7670 cache : pip
7771 cache-dependency-path : |
7872 requirements-tests.txt
0 commit comments