We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00716fa commit eed6c2dCopy full SHA for eed6c2d
.github/workflows/quality.yaml
@@ -24,7 +24,10 @@ jobs:
24
- name: Install dependencies
25
run: |
26
python -m pip install --upgrade pip
27
- python -m pip install ".[quality]"
+ python setup.py egg_info
28
+ sed '/^$/q' src/lighteval.egg-info/requires.txt > src/lighteval.egg-info/requires_lite.txt
29
+ python -m pip install ruff -c src/lighteval.egg-info/requires_lite.txt
30
+ rm -rf src/lighteval.egg-info
31
- name: Code quality
32
33
make quality
0 commit comments