@@ -56,13 +56,13 @@ jobs:
56
56
- name : Install uv
57
57
run : pip install --upgrade uv
58
58
- name : Install dependencies
59
- run : uv pip install --system "datasets[tests] @ ."
59
+ run : uv pip install --prerelease=allow -- system "datasets[tests] @ ."
60
60
- name : Install dependencies (latest versions)
61
61
if : ${{ matrix.deps_versions == 'deps-latest' }}
62
- run : uv pip install --system --upgrade pyarrow huggingface-hub "dill<0.3.9"
62
+ run : uv pip install --prerelease=allow -- system --upgrade pyarrow huggingface-hub "dill<0.3.9"
63
63
- name : Install dependencies (minimum versions)
64
64
if : ${{ matrix.deps_versions != 'deps-latest' }}
65
- run : uv pip install --system pyarrow==15.0.0 huggingface-hub==0.24.7 transformers dill==0.3.1.1
65
+ run : uv pip install --prerelease=allow -- system pyarrow==15.0.0 huggingface-hub==0.24.7 transformers dill==0.3.1.1
66
66
- name : Test with pytest
67
67
run : |
68
68
python -m pytest -rfExX -m ${{ matrix.test }} -n 2 --dist loadfile -sv ./tests/
89
89
- name : Install uv
90
90
run : pip install --upgrade uv
91
91
- name : Install dependencies
92
- run : uv pip install --system "datasets[tests] @ ."
92
+ run : uv pip install --prerelease=allow -- system "datasets[tests] @ ."
93
93
- name : Test with pytest
94
94
run : |
95
95
python -m pytest -rfExX -m ${{ matrix.test }} -n 2 --dist loadfile -sv ./tests/
@@ -116,7 +116,7 @@ jobs:
116
116
- name : Install uv
117
117
run : pip install --upgrade uv
118
118
- name : Install dependencies
119
- run : uv pip install --system "datasets[tests_numpy2] @ ."
119
+ run : uv pip install --prerelease=allow -- system "datasets[tests_numpy2] @ ."
120
120
- name : Test with pytest
121
121
run : |
122
122
python -m pytest -rfExX -m ${{ matrix.test }} -n 2 --dist loadfile -sv ./tests/
0 commit comments