diff options
author | David Robertson <davidr@element.io> | 2022-03-29 11:41:19 +0100 |
---|---|---|
committer | Sean Quah <seanq@element.io> | 2022-04-05 11:04:28 +0100 |
commit | a7293ef16fb3ca9f1234877f1496b30cdeeb01cd (patch) | |
tree | 6465ceb2ca58f9798fbfd18fc9341000aca9d6a1 /setup.py | |
parent | Add note in changelog of non-C type locale causing Synapse to refuse to start... (diff) | |
download | synapse-a7293ef16fb3ca9f1234877f1496b30cdeeb01cd.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", |