Skip to content

Commit 836f367

Browse files
committed
try with pip instead of uv
1 parent 73616d3 commit 836f367

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ jobs:
6666
with:
6767
limit-access-to-actor: true
6868
- name: Install Dependencies
69-
run: uv pip install -r requirements-tests.txt
69+
run: pip install -r requirements-tests.txt
7070
- name: Install Pydantic v1
7171
if: matrix.pydantic-version == 'pydantic-v1'
72-
run: uv pip install --upgrade "pydantic>=1.10.0,<2.0.0"
72+
run: pip install --upgrade "pydantic>=1.10.0,<2.0.0"
7373
- name: Install Pydantic v2
7474
if: matrix.pydantic-version == 'pydantic-v2'
75-
run: uv pip install --upgrade "pydantic>=2.0.2,<3.0.0" "typing-extensions==4.6.1"
75+
run: pip install --upgrade "pydantic>=2.0.2,<3.0.0" "typing-extensions==4.6.1"
7676
- name: Lint
7777
# Do not run on Python 3.7 as mypy behaves differently
7878
if: matrix.python-version != '3.7' && matrix.pydantic-version == 'pydantic-v2'

0 commit comments

Comments
 (0)