@@ -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.25.0 transformers dill==0.3.1.1
78+ run : uv pip install --prerelease=allow -- system pyarrow==21.0.0 huggingface-hub==0.25.0 transformers dill==0.3.1.1
7979 - name : Print dependencies
8080 run : uv pip list
8181 - name : Test with pytest
@@ -120,9 +120,9 @@ jobs:
120120 - name : Install uv
121121 run : pip install --upgrade uv
122122 - name : Install dependencies
123- run : uv pip install --system "datasets[tests] @ ."
123+ run : uv pip install --prerelease=allow -- system "datasets[tests] @ ."
124124 - name : Install tsfile (py3.14 only)
125- run : uv pip install --system "tsfile>=2.3.0"
125+ run : uv pip install --prerelease=allow -- system "tsfile>=2.3.0"
126126 - name : Print dependencies
127127 run : uv pip list
128128 - name : Test with pytest
@@ -167,7 +167,7 @@ jobs:
167167 - name : Install uv
168168 run : pip install --upgrade uv
169169 - name : Install dependencies
170- run : uv pip install --system "datasets[tests_numpy2] @ ."
170+ run : uv pip install --prerelease=allow -- system "datasets[tests_numpy2] @ ."
171171 - name : Print dependencies
172172 run : pip list
173173
0 commit comments