File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,13 +66,13 @@ jobs:
66
66
with :
67
67
limit-access-to-actor : true
68
68
- name : Install Dependencies
69
- run : uv pip install -r requirements-tests.txt
69
+ run : pip install -r requirements-tests.txt
70
70
- name : Install Pydantic v1
71
71
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"
73
73
- name : Install Pydantic v2
74
74
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"
76
76
- name : Lint
77
77
# Do not run on Python 3.7 as mypy behaves differently
78
78
if : matrix.python-version != '3.7' && matrix.pydantic-version == 'pydantic-v2'
You can’t perform that action at this time.
0 commit comments