diff --git a/run-tests.sh b/run-tests.sh index cd0619c..f875118 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -8,7 +8,7 @@ # details. pydocstyle invenio_theme_tugraz tests docs && \ -isort -rc -c -df && \ +isort . -c --df && \ check-manifest --ignore ".travis-*" && \ sphinx-build -qnNW docs docs/_build/html && \ python setup.py test diff --git a/setup.py b/setup.py index f0f18fa..c5f5812 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ history = open('CHANGES.rst').read() tests_require = [ 'check-manifest>=0.25', 'coverage>=4.0', - 'isort>=4.3.3, <5.0.0', + 'isort>=5.0', 'pydocstyle>=2.0.0', 'pytest-cov>=2.5.1', 'pytest-pep8>=1.0.6',