Pin isort to 4.2.5 - fixes #3623

pull/3245/head^2
Matt Westcott 2017-06-02 12:23:49 +01:00
rodzic 0c745855ff
commit b976db3afc
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -8,7 +8,7 @@ We ask that all Python contributions adhere to the `PEP8 <http://www.python.org/
The list of PEP8 violations to ignore is in the ``tox.ini`` file, under the ``[flake8]`` header.
You might want to configure the flake8 linter in your editor/IDE to use the configuration in this file.
In addition, import lines should be sorted according to `isort <http://timothycrosley.github.io/isort/>`_ rules. If you have installed Wagtail's testing dependencies (``pip install -e .[testing]``), you can check your code by running ``make lint``.
In addition, import lines should be sorted according to `isort <http://timothycrosley.github.io/isort/>`_ 4.2.5 rules. If you have installed Wagtail's testing dependencies (``pip install -e .[testing]``), you can check your code by running ``make lint``.
Python 2 and 3 compatibility

Wyświetl plik

@ -49,7 +49,7 @@ testing_extras = [
# For coverage and PEP8 linting
'coverage>=3.7.0',
'flake8>=2.2.0',
'isort>=4.2.0',
'isort==4.2.5',
'flake8-blind-except==0.1.1',
'flake8-print==2.0.2',
]