From f70b046ed48d1e107ce573d38aaaa6fb1598de9e Mon Sep 17 00:00:00 2001 From: Ana Maria Martinez Gomez Date: Thu, 29 Apr 2021 11:46:20 +0200 Subject: [PATCH] ci: update isort Before removing Py2 we were already using isort 3.8.0 in the tests, as we were requiring isort 5 explicitly: ``` pip install 'isort==5.*' black ``` ce8370931e5ff3cb55a010eea52cfb216ad69f7b starts using the setup.py version, which makes the tests fail. Note this was not a problem because we were using Py3 for the code linters. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 05ddbbca..023265aa 100644 --- a/setup.py +++ b/setup.py @@ -83,7 +83,7 @@ setuptools.setup( "pytest-cov==2.11.1", "pycodestyle==2.7.0", "black==20.8b1 ; python_version>'3.0'", - "isort==4.3.21", # TODO: Change to 5.8.0 when removing py2 + "isort==5.8.0 ; python_version>'3.0'", ] }, zip_safe=False,