diff options
author | David Robertson <davidr@element.io> | 2022-03-29 11:41:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-29 10:41:19 +0000 |
commit | a2b00a44865ff11810c5302e33c1c61ce21a030e (patch) | |
tree | d16f0f5378588b3fb2c4584b00f271219255e2c1 /setup.py | |
parent | Remove unused `auth_event_ids` argument plumbing (#12304) (diff) | |
download | synapse-a2b00a44865ff11810c5302e33c1c61ce21a030e.tar.xz |
Bump `black` and `click` versions (#12320)
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py index 63da71ad7b..48bd418bb8 100755 --- a/setup.py +++ b/setup.py @@ -95,7 +95,7 @@ CONDITIONAL_REQUIREMENTS["all"] = list(ALL_OPTIONAL_REQUIREMENTS) # We pin black so that our tests don't start failing on new releases. CONDITIONAL_REQUIREMENTS["lint"] = [ "isort==5.7.0", - "black==21.12b0", + "black==22.3.0", "flake8-comprehensions", "flake8-bugbear==21.3.2", "flake8", @@ -128,7 +128,7 @@ CONDITIONAL_REQUIREMENTS["dev"] = ( + CONDITIONAL_REQUIREMENTS["test"] + [ # The following are used by the release script - "click==7.1.2", + "click==8.1.0", "redbaron==0.9.2", "GitPython==3.1.14", "commonmark==0.9.1", |