Skip to content

Commit

Permalink
Increase required isort version to 4.3.5.
Browse files Browse the repository at this point in the history
Having 'isort[pyproject] >= 4.3.0' as a requirement may make installation
fail, because isort versions 4.3.0 to 4.3.4 do not have the pyproject
extra, as it was added in version 4.3.5. Increasing the minimum version
to 4.3.5 should fix this.

Example of error when attempting to install flake8-isort:

pkg_resources.UnknownExtra: isort 4.3.4 has no such extra feature 'pyproject'
  • Loading branch information
pedrofreire committed Jan 20, 2020
1 parent a3c084f commit eea5dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -46,7 +46,7 @@
zip_safe=False,
install_requires=[
'flake8 >= 3.2.1',
'isort[pyproject] >= 4.3.0',
'isort[pyproject] >= 4.3.5',
'testfixtures',
],
extras_require={
Expand Down

0 comments on commit eea5dff

Please sign in to comment.