File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,18 @@ jobs:
16
16
runs-on : ubuntu-24.04
17
17
steps :
18
18
- 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
19
24
- uses : deargen/workflows/actions/setup-python-and-uv@master
20
25
- name : Install dependencies
21
26
run : |
22
27
uv venv
23
28
source .venv/bin/activate
24
29
uv pip install -r deps/lock/x86_64-manylinux_2_28/requirements_dev.txt
25
30
bash scripts/install.sh
26
- python3 scripts/hf_download.py
27
31
- name : Run pytest
28
32
uses : deargen/workflows/actions/run-pytest@master
29
33
Original file line number Diff line number Diff line change 246
246
// return dist
247
247
248
248
use pyo3:: prelude:: * ;
249
- use pyo3:: types:: PyDict ;
250
249
use rayon:: prelude:: * ;
251
250
use std:: collections:: { BinaryHeap , HashMap , HashSet } ;
252
251
You can’t perform that action at this time.
0 commit comments