File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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
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
You can’t perform that action at this time.
0 commit comments