Skip to content

Commit

Permalink
Merge pull request #1109 from TurnOffNOD/main
Browse files Browse the repository at this point in the history
remove cryptography version pinning due to paramiko newer than 2.11.0
  • Loading branch information
amjith authored Mar 24, 2024
2 parents 4896cae + 6cc3f79 commit 2f7ea28
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Upcoming
========


Bug Fixes:
----------

Expand All @@ -9,6 +10,12 @@ Bug Fixes:
* Let the `--prompt` option act normally with its predefined default value



Internal:
---------
* paramiko is newer than 2.11.0 now, remove version pinning `cryptography`.


1.27.0 (2023/08/11)
===================

Expand Down
8 changes: 3 additions & 5 deletions mycli/AUTHORS
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
Project Lead:
-------------
* Thomas Roten


Core Developers:
----------------

* Thomas Roten
* Irina Truong
* Matheus Rosa
* Darik Gamble
Expand Down Expand Up @@ -94,11 +90,13 @@ Contributors:
* Arvind Mishra
* Kevin Schmeichel
* Mel Dafert
* Thomas Copper
* Will Wang
* Alfred Wingate
* Zhanze Wang
* Houston Wong


Created by:
-----------

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@

install_requirements = [
'click >= 7.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',
# Pinning cryptography is not needed after paramiko 2.11.0. Correct it
'cryptography >= 1.0.0',
# 'Pygments>=1.6,<=2.11.1',
'Pygments>=1.6',
'prompt_toolkit>=3.0.6,<4.0.0',
Expand Down

0 comments on commit 2f7ea28

Please sign in to comment.