Skip to content

Commit

Permalink
Merge pull request #423 from allenai/fix_deps
Browse files Browse the repository at this point in the history
Pin black dependency due to compatibility issue between click (from b…
  • Loading branch information
dakinggg authored Feb 25, 2022
2 parents b83785f + 5b65176 commit 7587041
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM python:3.8-buster

# install base packages
RUN apt-get clean \
&& apt-get update --fix-missing \
&& apt-get install -y \
&& apt-get update --fix-missing \
&& apt-get install -y \
git \
curl \
gcc \
Expand Down
3 changes: 2 additions & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ scikit-learn>=0.20.3
pytest
pytest-cov
flake8
black
# black currently pinned because of a dependency issue with spacy, typer, and click
black<=21.12b0
mypy
types-requests

Expand Down

0 comments on commit 7587041

Please sign in to comment.