"vscode:/vscode.git/clone" did not exist on "5cc7d0147162e6fa8f1f66339055282852bf63c5"
Commit e9acf86d authored by Dirk Groeneveld's avatar Dirk Groeneveld
Browse files

Move black and pytest to be dev dependencies

parent aeb7e846
...@@ -32,7 +32,7 @@ jobs: ...@@ -32,7 +32,7 @@ jobs:
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov pip install flake8 pytest pytest-cov
pip install -e . pip install -e .[dev]
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8 - name: Lint with flake8
run: | run: |
......
...@@ -20,7 +20,6 @@ setuptools.setup( ...@@ -20,7 +20,6 @@ setuptools.setup(
], ],
python_requires='>=3.6', python_requires='>=3.6',
install_requires=[ install_requires=[
"black",
"datasets==2.0.0", "datasets==2.0.0",
"click>=7.1", "click>=7.1",
"scikit-learn>=0.24.1", "scikit-learn>=0.24.1",
...@@ -33,7 +32,6 @@ setuptools.setup( ...@@ -33,7 +32,6 @@ setuptools.setup(
"pycountry==20.7.3", "pycountry==20.7.3",
"numexpr==2.7.2", "numexpr==2.7.2",
"lm_dataformat==0.0.20", "lm_dataformat==0.0.20",
"pytest>=6.2.5",
"pybind11==2.6.2", "pybind11==2.6.2",
"tqdm-multiprocess==0.0.11", "tqdm-multiprocess==0.0.11",
"zstandard==0.15.2", "zstandard==0.15.2",
...@@ -46,5 +44,6 @@ setuptools.setup( ...@@ -46,5 +44,6 @@ setuptools.setup(
], ],
dependency_links=[ dependency_links=[
"https://github.com/google-research/bleurt/archive/b610120347ef22b494b6d69b4316e303f5932516.zip#egg=bleurt", "https://github.com/google-research/bleurt/archive/b610120347ef22b494b6d69b4316e303f5932516.zip#egg=bleurt",
] ],
extras_require={'dev': [ 'pytest', 'black' ]}
) )
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment