Skip to content

Commit

Permalink
Add toml module as explicit requirement
Browse files Browse the repository at this point in the history
black recently dropped this requirement
(psf/black#2301), so this results in an error if
this is run with a newer version of black.
  • Loading branch information
mgmarino committed Jul 20, 2021
1 parent dcd7789 commit 62f2448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def get_long_description() -> str:
py_modules=["black_nbconvert"],
python_requires=">=3.6",
zip_safe=False,
install_requires=["black", "nbconvert"],
install_requires=["black", "nbconvert", "toml"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
Expand Down

0 comments on commit 62f2448

Please sign in to comment.