Skip to content

Commit f264e58

Browse files
Move CI to "ubuntu-latest" (round 2) (#570)
GitHub is decommissioning Ubuntu 20.04. I wouldn't expect our tests to have a lot of OS version dependencies, so let's try just running ubuntu-latest everywhere. Co-authored-by: Jelle Zijlstra <[email protected]>
1 parent 5ce0e69 commit f264e58

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,10 @@ jobs:
3939
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
4040
python-version:
4141
- "3.8"
42-
- "3.8.0"
4342
- "3.9"
44-
- "3.9.0"
43+
- "3.9.12"
4544
- "3.10"
46-
- "3.10.0"
45+
- "3.10.4"
4746
- "3.11"
4847
- "3.11.0"
4948
- "3.12"
@@ -54,7 +53,7 @@ jobs:
5453
- "pypy3.9"
5554
- "pypy3.10"
5655

57-
runs-on: ubuntu-20.04
56+
runs-on: ubuntu-latest
5857

5958
steps:
6059
- uses: actions/checkout@v4
@@ -70,6 +69,7 @@ jobs:
7069
# Be wary of running `pip install` here, since it becomes easy for us to
7170
# accidentally pick up typing_extensions as installed by a dependency
7271
cd src
72+
python --version # just to make sure we're running the right one
7373
python -m unittest test_typing_extensions.py
7474
7575
- name: Test CPython typing test suite

0 commit comments

Comments
 (0)