@@ -69,13 +69,13 @@ jobs:
6969 - name : Install uv
7070 run : pip install --upgrade uv
7171 - name : Install dependencies
72- run : uv pip install --system "datasets[tests] @ ."
72+ run : uv pip install --prerelease=allow -- system "datasets[tests] @ ."
7373 - name : Install dependencies (latest versions)
7474 if : ${{ matrix.deps_versions == 'deps-latest' }}
75- run : uv pip install --system --upgrade pyarrow huggingface-hub "dill<0.3.9"
75+ run : uv pip install --prerelease=allow -- system --upgrade pyarrow huggingface-hub "dill<0.3.9"
7676 - name : Install dependencies (minimum versions)
7777 if : ${{ matrix.deps_versions != 'deps-latest' }}
78- run : uv pip install --system pyarrow==21.0.0 huggingface-hub==0.24.7 transformers dill==0.3.1.1
78+ run : uv pip install --prerelease=allow -- system pyarrow==21.0.0 huggingface-hub==0.24.7 transformers dill==0.3.1.1
7979 - name : Test with pytest
8080 run : |
8181 python -m pytest -rfExX -m ${{ matrix.test }} -n 2 --dist loadfile -sv ./tests/
@@ -118,7 +118,7 @@ jobs:
118118 - name : Install uv
119119 run : pip install --upgrade uv
120120 - name : Install dependencies
121- run : uv pip install --system "datasets[tests] @ ."
121+ run : uv pip install --prerelease=allow -- system "datasets[tests] @ ."
122122 - name : Test with pytest
123123 run : |
124124 python -m pytest -rfExX -m ${{ matrix.test }} -n 2 --dist loadfile -sv ./tests/
@@ -161,7 +161,7 @@ jobs:
161161 - name : Install uv
162162 run : pip install --upgrade uv
163163 - name : Install dependencies
164- run : uv pip install --system "datasets[tests_numpy2] @ ."
164+ run : uv pip install --prerelease=allow -- system "datasets[tests_numpy2] @ ."
165165 - name : Test with pytest
166166 run : |
167167 python -m pytest -rfExX -m ${{ matrix.test }} -n 2 --dist loadfile -sv ./tests/
0 commit comments