File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,14 +16,18 @@ jobs:
1616 runs-on : ubuntu-24.04
1717 steps :
1818 - uses : actions/checkout@v4
19+ - name : Download test data
20+ run : |
21+ # Do this before setup python because huggingface_hub stopped supporting python 3.8
22+ pip install huggingface_hub
23+ python3 scripts/hf_download.py
1924 - uses : deargen/workflows/actions/setup-python-and-uv@master
2025 - name : Install dependencies
2126 run : |
2227 uv venv
2328 source .venv/bin/activate
2429 uv pip install -r deps/lock/x86_64-manylinux_2_28/requirements_dev.txt
2530 bash scripts/install.sh
26- python3 scripts/hf_download.py
2731 - name : Run pytest
2832 uses : deargen/workflows/actions/run-pytest@master
2933
Original file line number Diff line number Diff line change 246246// return dist
247247
248248use pyo3:: prelude:: * ;
249- use pyo3:: types:: PyDict ;
250249use rayon:: prelude:: * ;
251250use std:: collections:: { BinaryHeap , HashMap , HashSet } ;
252251
You can’t perform that action at this time.
0 commit comments