File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/huggingface_hub/inference/_mcp Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ def get_version() -> str:
83
83
"pytest-xdist" ,
84
84
"pytest-vcr" , # to mock Inference
85
85
"pytest-asyncio" , # for AsyncInferenceClient
86
- "pytest-rerunfailures" , # to rerun flaky tests in CI
86
+ "pytest-rerunfailures<16.0 " , # to rerun flaky tests in CI
87
87
"pytest-mock" ,
88
88
"urllib3<2.0" , # VCR.py broken with urllib3 2.0 (see https://urllib3.readthedocs.io/en/stable/v2-migration-guide.html)
89
89
"soundfile" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ def _patch_anyio_open_process():
17
17
18
18
if getattr (anyio , "_tiny_agents_patched" , False ):
19
19
return
20
- anyio ._tiny_agents_patched = True
20
+ anyio ._tiny_agents_patched = True # ty: ignore[invalid-assignment]
21
21
22
22
original_open_process = anyio .open_process
23
23
You can’t perform that action at this time.
0 commit comments