summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Walker <walker@pobox.com>2022-05-16 13:15:11 -0500
committerRoland Walker <walker@pobox.com>2022-05-16 13:15:11 -0500
commiteaddc5ca3e208d66fd4f400b90eb76089dd35e4c (patch)
tree5122980608deae8a5cf5fe191765b94efa9f92d6
parent1ff8ad64ee305c1fdf41ebeafceda07d45a310de (diff)
pin cryptography to suppress Blowfish warning
from paramiko, which breaks CI
-rw-r--r--changelog.md5
-rwxr-xr-xsetup.py4
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)
===================
diff --git a/setup.py b/setup.py
index a44289a..c9dcc44 100755
--- a/setup.py
+++ b/setup.py
@@ -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',