Skip to content

Commit

Permalink
Try not to install black on PyPy
Browse files Browse the repository at this point in the history
typed-ast which is a dependency of black doesn't support PyPy.
  • Loading branch information
ymyzk committed Dec 31, 2020
1 parent 018fbd8 commit 81676f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ tox =

[options.extras_require]
testing =
black; python_version>='3.6'
black; platform_python_implementation=='CPython' and python_version>='3.6'
flake8 >= 3, <4
pytest >= 4.0.0, <6
pytest-cov >= 2, <3
Expand Down

0 comments on commit 81676f0

Please sign in to comment.