Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
lm-evaluation-harness
Commits
e9acf86d
Commit
e9acf86d
authored
Apr 21, 2022
by
Dirk Groeneveld
Browse files
Move black and pytest to be dev dependencies
parent
aeb7e846
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
.github/workflows/python-app.yml
.github/workflows/python-app.yml
+1
-1
setup.py
setup.py
+2
-3
No files found.
.github/workflows/python-app.yml
View file @
e9acf86d
...
...
@@ -32,7 +32,7 @@ jobs:
run
:
|
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov
pip install -e .
pip install -e .
[dev]
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
-
name
:
Lint with flake8
run
:
|
...
...
setup.py
View file @
e9acf86d
...
...
@@ -20,7 +20,6 @@ setuptools.setup(
],
python_requires
=
'>=3.6'
,
install_requires
=
[
"black"
,
"datasets==2.0.0"
,
"click>=7.1"
,
"scikit-learn>=0.24.1"
,
...
...
@@ -33,7 +32,6 @@ setuptools.setup(
"pycountry==20.7.3"
,
"numexpr==2.7.2"
,
"lm_dataformat==0.0.20"
,
"pytest>=6.2.5"
,
"pybind11==2.6.2"
,
"tqdm-multiprocess==0.0.11"
,
"zstandard==0.15.2"
,
...
...
@@ -46,5 +44,6 @@ setuptools.setup(
],
dependency_links
=
[
"https://github.com/google-research/bleurt/archive/b610120347ef22b494b6d69b4316e303f5932516.zip#egg=bleurt"
,
]
],
extras_require
=
{
'dev'
:
[
'pytest'
,
'black'
]}
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment