Skip to content

Commit f91313c

Browse files
committed
try 22.04
1 parent 58b4ab2 commit f91313c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,23 +54,23 @@ jobs:
5454
- "pypy3.9"
5555
- "pypy3.10"
5656

57-
runs-on: ubuntu-latest
57+
runs-on: ubuntu-22.04
5858

5959
steps:
6060
- uses: actions/checkout@v4
6161

6262
- name: Set up Python
63-
uses: astral-sh/setup-uv@v5
63+
uses: actions/setup-python@v5
6464
with:
6565
python-version: ${{ matrix.python-version }}
66-
enable-cache: false
66+
allow-prereleases: true
6767

6868
- name: Test typing_extensions
6969
run: |
7070
# Be wary of running `pip install` here, since it becomes easy for us to
7171
# accidentally pick up typing_extensions as installed by a dependency
7272
cd src
73-
python --version
73+
python --version # just to make sure we're running the right one
7474
python -m unittest test_typing_extensions.py
7575
7676
- name: Test CPython typing test suite

0 commit comments

Comments
 (0)