diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-03-29 11:55:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-29 11:55:33 +0100 |
commit | ad8690a26c891a8e3444a3e80bdcdb3ba0d6a02b (patch) | |
tree | d85bd8b83894a8b4116fd30790b9cd0e861fc825 /changelog.d | |
parent | Make pip install faster in Docker build for Complement testing (#9610) (diff) | |
download | synapse-ad8690a26c891a8e3444a3e80bdcdb3ba0d6a02b.tar.xz |
Fix the suggested pip incantation for cryptography (#9699)
If you have the wrong version of `cryptography` installed, synapse suggests: ``` To install run: pip install --upgrade --force 'cryptography>=3.4.7;python_version>='3.6'' ``` However, the use of ' inside '...' doesn't work, so when you run this, you get an error.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/9699.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/9699.bugfix b/changelog.d/9699.bugfix new file mode 100644 index 0000000000..e871825b33 --- /dev/null +++ b/changelog.d/9699.bugfix @@ -0,0 +1 @@ +Fix a bug introduced in Synapse 1.30.1 which meant the suggested `pip` incantation to install an updated `cryptography` was incorrect. |