File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 61
61
uv pip install --system -r additional-tests-requirements.txt --no-deps
62
62
- name : Install dependencies (latest versions)
63
63
if : ${{ matrix.deps_versions == 'deps-latest' }}
64
- run : uv pip install --system --upgrade pyarrow " huggingface-hub<0.23.0" dill
64
+ run : uv pip install --system --upgrade pyarrow huggingface-hub dill
65
65
- name : Install dependencies (minimum versions)
66
66
if : ${{ matrix.deps_versions != 'deps-latest' }}
67
67
run : uv pip install --system pyarrow==12.0.0 huggingface-hub==0.21.2 transformers dill==0.3.1.1
Original file line number Diff line number Diff line change @@ -15,9 +15,10 @@ known-first-party = ["datasets"]
15
15
16
16
[tool .pytest .ini_options ]
17
17
# Test fails if a FutureWarning is thrown by `huggingface_hub`
18
- filterwarnings = [
19
- " error::FutureWarning:huggingface_hub*" ,
20
- ]
18
+ # Temporarily disabled because transformers 4.41.1 calls deprecated code from `huggingface_hub` that causes FutureWarning
19
+ # filterwarnings = [
20
+ # "error::FutureWarning:huggingface_hub*",
21
+ # ]
21
22
markers = [
22
23
" unit: unit test" ,
23
24
" integration: integration test" ,
Original file line number Diff line number Diff line change 135
135
# for data streaming via http
136
136
"aiohttp" ,
137
137
# To get datasets from the Datasets Hub on huggingface.co
138
- "huggingface-hub>=0.21.2,<0.23.0" , # temporary pin: see https://github.com/huggingface/datasets/issues/6860
138
+ "huggingface-hub>=0.21.2" ,
139
139
# Utilities from PyPA to e.g., compare versions
140
140
"packaging" ,
141
141
# To parse YAML metadata from dataset cards
You can’t perform that action at this time.
0 commit comments