Skip to content

Commit 29bde2d

Browse files
committed
try
1 parent 616c0f4 commit 29bde2d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,16 @@ jobs:
6060
- uses: actions/checkout@v4
6161

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

6867
- name: Test typing_extensions
6968
run: |
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
73-
python -m unittest test_typing_extensions.py
72+
$UV_PYTHON -m unittest test_typing_extensions.py
7473
7574
- name: Test CPython typing test suite
7675
# Test suite fails on PyPy even without typing_extensions
@@ -79,7 +78,7 @@ jobs:
7978
cd src
8079
# Run the typing test suite from CPython with typing_extensions installed,
8180
# because we monkeypatch typing under some circumstances.
82-
python -c 'import typing_extensions; import test.__main__' test_typing -v
81+
$UV_PYTHON -c 'import typing_extensions; import test.__main__' test_typing -v
8382
8483
linting:
8584
name: Lint

0 commit comments

Comments
 (0)