|
25 | 25 | - name: Install dependencies |
26 | 26 | run: | |
27 | 27 | python -m pip install --upgrade pip |
28 | | - pip install --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple .[quality] |
| 28 | + pip install --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple "pyarrow>=21.0.0.dev" |
| 29 | + pip install .[quality] |
29 | 30 | - name: Check quality |
30 | 31 | run: | |
31 | 32 | ruff check tests src benchmarks utils setup.py # linter |
|
58 | 59 | - name: Install uv |
59 | 60 | run: pip install --upgrade uv |
60 | 61 | - name: Install dependencies |
61 | | - run: uv pip install --system --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple "datasets[tests] @ ." |
| 62 | + run: | |
| 63 | + uv pip install --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple "pyarrow>=21.0.0.dev" |
| 64 | + uv pip install --system "datasets[tests] @ ." |
62 | 65 | - name: Install dependencies (latest versions) |
63 | 66 | if: ${{ matrix.deps_versions == 'deps-latest' }} |
64 | 67 | run: uv pip install --system --upgrade huggingface-hub "dill<0.3.9" |
|
96 | 99 | - name: Install uv |
97 | 100 | run: pip install --upgrade uv |
98 | 101 | - name: Install dependencies |
99 | | - run: uv pip install --system --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple "datasets[tests] @ ." |
| 102 | + run: | |
| 103 | + uv pip install --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple "pyarrow>=21.0.0.dev" |
| 104 | + uv pip install --system "datasets[tests] @ ." |
100 | 105 | - name: Test with pytest |
101 | 106 | run: | |
102 | 107 | python -m pytest -rfExX -m ${{ matrix.test }} -n 2 --dist loadfile -sv ./tests/ |
@@ -128,7 +133,9 @@ jobs: |
128 | 133 | - name: Install uv |
129 | 134 | run: pip install --upgrade uv |
130 | 135 | - name: Install dependencies |
131 | | - run: uv pip install --system --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple "datasets[tests_numpy2] @ ." |
| 136 | + run: | |
| 137 | + uv pip install --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple "pyarrow>=21.0.0.dev" |
| 138 | + uv pip install --system "datasets[tests_numpy2] @ ." |
132 | 139 | - name: Test with pytest |
133 | 140 | run: | |
134 | 141 | python -m pytest -rfExX -m ${{ matrix.test }} -n 2 --dist loadfile -sv ./tests/ |
0 commit comments