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 0745e9a commit 0c5a8fcCopy full SHA for 0c5a8fc
.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 ruff==v0.1.2
+ 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
pyproject.toml
@@ -73,7 +73,7 @@ dependencies = [
73
"protobuf==3.20.*", # pinned for sentencepiece compat
74
"pycountry",
75
# Code style
76
- "ruff==v0.1.2",
+ "ruff==v0.2.2",
77
]
78
79
[project.optional-dependencies]
0 commit comments