diff options
author | Will Hunt <will@half-shot.uk> | 2020-07-05 16:32:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-05 16:32:02 +0100 |
commit | 62b1ce85398f52e7d6137e77083294d0c90af459 (patch) | |
tree | 8bb59226c2abea66fccfd42068a608a88eeaae8c /tox.ini | |
parent | Merge different Resource implementation classes (#7732) (diff) | |
download | synapse-62b1ce85398f52e7d6137e77083294d0c90af459.tar.xz |
isort 5 compatibility (#7786)
The CI appears to use the latest version of isort, which is a problem when isort gets a major version bump. Rather than try to pin the version, I've done the necessary to make isort5 happy with synapse.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini index ab6557f15e..1c042cb227 100644 --- a/tox.ini +++ b/tox.ini @@ -131,8 +131,8 @@ commands = [testenv:check_isort] skip_install = True -deps = isort -commands = /bin/sh -c "isort -c -df -sp setup.cfg -rc synapse tests scripts-dev scripts" +deps = isort==5.0.3 +commands = /bin/sh -c "isort -c --df --sp setup.cfg synapse tests scripts-dev scripts" [testenv:check-newsfragment] skip_install = True |