diff options
author | Roland Walker <walker@pobox.com> | 2022-05-16 13:15:11 -0500 |
---|---|---|
committer | Roland Walker <walker@pobox.com> | 2022-05-16 13:15:11 -0500 |
commit | eaddc5ca3e208d66fd4f400b90eb76089dd35e4c (patch) | |
tree | 5122980608deae8a5cf5fe191765b94efa9f92d6 | |
parent | 1ff8ad64ee305c1fdf41ebeafceda07d45a310de (diff) |
pin cryptography to suppress Blowfish warning
from paramiko, which breaks CI
-rw-r--r-- | changelog.md | 5 | ||||
-rwxr-xr-x | setup.py | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/changelog.md b/changelog.md index 01040ae..578fbc2 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,8 @@ +Internal: +--------- +* Pin `cryptography` to suppress `paramiko` warning, helping CI complete and presumably affecting some users. + + 1.25.0 (2022/04/02) =================== @@ -18,7 +18,9 @@ description = 'CLI for MySQL Database. With auto-completion and syntax highlight install_requirements = [ 'click >= 7.0', - 'cryptography >= 1.0.0', + # Temporary to suppress paramiko Blowfish warning which breaks CI. + # Pinning cryptography should not be needed after paramiko 2.11.0. + 'cryptography == 36.0.2', # 'Pygments>=1.6,<=2.11.1', 'Pygments>=1.6', 'prompt_toolkit>=3.0.6,<4.0.0', |